[Linux-usb-users] 互惠互利

2006-08-31 Thread 简小姐
贵公司负责人(经理/财务)您好:   我是深圳市恒凯实业有限公司的。本公司是由一群国内进 出口代理与销售管理专业人士组成的,公司本着互惠互利的, 原则合理对外优惠代开发票,代开发票范围:(增值税票.普通国 税商品销售发票,地税广告发票、运输发票、其它服务发票、 租赁发票、维修发票、建筑安装发票、餐饮定额发票,)点数 优惠!本公同所开出税票真实有效,欢迎来电咨询!   (打扰之处,请谅解) 业务手机: 13590108911 联 系 人:简结英 -

[Linux-usb-users] 互惠互利

2006-08-31 Thread jian
贵公司负责人(经理/财务)您好:   我是深圳市恒凯实业有限公司的。本公司是由一群国内进 出口代理与销售管理专业人士组成的,公司本着互惠互利的, 原则合理对外优惠代开发票,代开发票范围:(增值税票.普通国 税商品销售发票,地税广告发票、运输发票、其它服务发票、 租赁发票、维修发票、建筑安装发票、餐饮定额发票,)点数 优惠!本公同所开出税票真实有效,欢迎来电咨询!   (打扰之处,请谅解) 业务手机: 13590108911 联 系 人:简结英 -

[Linux-usb-users] (no subject)

2006-08-31 Thread 熊芳芳
深圳万达实业有限公司 SHENZHEN WANDA SHI YE CO.,LTD 贵公司负责人(经理/财务): 您好! 深圳万达实业有限公司为税务机关代开发票授权公司,本公司现有全国各地各种行业固定纳税公司的余额 发票,可以优惠对外开具。普通发票详细税率可根据地区、行业、票额大小商谈! 普通国税发票为商品销售(包含所有行业的商品)。普通地税发票为建筑、安装、

Re: [Linux-usb-users] [usb-storage] Re: [PATCH] replace kernel_thread() with kthread_run() in libusual.c

2006-08-31 Thread Matthew Dharm
Looks reasonable. Greg, please apply. Matt Signed-off-by: Matthew Dharm <[EMAIL PROTECTED]> On Thu, Aug 31, 2006 at 10:24:03PM +0200, Cedric Le Goater wrote: > Matthew Dharm wrote: > > > The URL in MAINTAINERS is correct, please don't remove it. The server > > seems to need fixing, however...

Re: [Linux-usb-users] [PATCH] replace kernel_thread() with kthread_run() in libusual.c

2006-08-31 Thread Cedric Le Goater
Matthew Dharm wrote: > The URL in MAINTAINERS is correct, please don't remove it. The server > seems to need fixing, however... I'll make sure that gets done. ok. I've fixed the patch to remove the MAINTAINERS file. thanks, C. Replaced kernel_thread() with kthread_run() since kernel_thread(

Re: [Linux-usb-users] [PATCH] replace kernel_thread() with kthread_run() in libusual.c

2006-08-31 Thread Matthew Dharm
The URL in MAINTAINERS is correct, please don't remove it. The server seems to need fixing, however... I'll make sure that gets done. Matt On Thu, Aug 31, 2006 at 05:16:55PM +0200, Cedric Le Goater wrote: > Alan Stern wrote: > > On Thu, 31 Aug 2006, Cedric Le Goater wrote: > > > >> - rc = kern

Re: [Linux-usb-users] [PATCH] replace kernel_thread() with kthread_run() in libusual.c

2006-08-31 Thread Cedric Le Goater
Alan Stern wrote: > On Thu, 31 Aug 2006, Cedric Le Goater wrote: > >> Alan Stern wrote: >>> On Thu, 31 Aug 2006, Cedric Le Goater wrote: >>> - rc = kernel_thread(usu_probe_thread, (void*)type, CLONE_VM); + task = kthread_run(usu_probe_thread, (void*)type, "libusual_%d", type); +

Re: [Linux-usb-users] Pls help..Facing problem when TUSB3410 switches the configuration after firmware download.

2006-08-31 Thread Peter E. Berger
Hi Prakash: Sorry I can't help you on this. I have to defer to my colleague, Al Borchers, who wrote this driver. I think Al corresponded with someone else who fiddled with the driver to get it to work on a PowerPC machine but I think it was with a newer kernel. Let's see what Al remembers about

[Linux-usb-users] Pls help..Facing problem when TUSB3410 switches the configuration after firmware download.

2006-08-31 Thread Mortha, Prakash
Hi, Iam trying to integrate TUSB3410 UART with PowerPC based SBC in which Iam running Linux Version 2.4.32. When I plug in the TUSB3410 it is downloading the firmware successfully and trying to switch to the new configuration using usb_set_configuration(dev, TI_ACTIVE_CONFIG); in the file: ti_usb

Re: [Linux-usb-users] [PATCH] replace kernel_thread() with kthread_run() in libusual.c

2006-08-31 Thread Alan Stern
On Thu, 31 Aug 2006, Cedric Le Goater wrote: > Alan Stern wrote: > > On Thu, 31 Aug 2006, Cedric Le Goater wrote: > > > >> - rc = kernel_thread(usu_probe_thread, (void*)type, CLONE_VM); > >> + task = kthread_run(usu_probe_thread, (void*)type, "libusual_%d", type); > >> + rc = PTR_ERR(task); >

Re: [Linux-usb-users] [PATCH] replace kernel_thread() with kthread_run() in libusual.c

2006-08-31 Thread Cedric Le Goater
Alan Stern wrote: > On Thu, 31 Aug 2006, Cedric Le Goater wrote: > >> -rc = kernel_thread(usu_probe_thread, (void*)type, CLONE_VM); >> +task = kthread_run(usu_probe_thread, (void*)type, "libusual_%d", type); >> +rc = PTR_ERR(task); > > This conversion is not valid unless IS_ERR(task)

Re: [Linux-usb-users] [PATCH] replace kernel_thread() with kthread_run() in libusual.c

2006-08-31 Thread Alan Stern
On Thu, 31 Aug 2006, Cedric Le Goater wrote: > - rc = kernel_thread(usu_probe_thread, (void*)type, CLONE_VM); > + task = kthread_run(usu_probe_thread, (void*)type, "libusual_%d", type); > + rc = PTR_ERR(task); This conversion is not valid unless IS_ERR(task) is true. Did you actuall

Re: [Linux-usb-users] External hard drive fails after a couple of days; reset/offlined/I/O errors

2006-08-31 Thread Alan Stern
On Thu, 31 Aug 2006, Adam Rosi-Kessel wrote: > Using 2.6.17.11 on a Debian Sarge system. > > I have a brand new external USB 2.0 250GB hard drive. It shows up like > this: > > Vendor: WDC WD25 Model: WD-WMAL71747150 Rev: 2D08 > Type: Direct-Access ANSI SCSI revision: >

[Linux-usb-users] [PATCH] replace kernel_thread() with kthread_run() in libusual.c

2006-08-31 Thread Cedric Le Goater
Matthew, Here's a small patch that replaces kernel_thread() with the kthread API. There should be no impact on the usu_end_notify completion or the init semaphore. thanks for comments, C. Replaced kernel_thread() with kthread_run() since kernel_thread() is deprecated in drivers/modules. also

Re: [Linux-usb-users] Flash memory problem

2006-08-31 Thread Alan Stern
On Sat, 2 Sep 2006, Anton Litvinov wrote: > Hello. > > The decision of problem was found. > One kind man from www.kerneltrap.org pointed me to > official site of Patriot Memory > http://www.patriotmemory.com/support/partitionp.jsp > where one can take their utility and disable second disk. > > N

[Linux-usb-users] External hard drive fails after a couple of days; reset/offlined/I/O errors

2006-08-31 Thread Adam Rosi-Kessel
Using 2.6.17.11 on a Debian Sarge system. I have a brand new external USB 2.0 250GB hard drive. It shows up like this: Vendor: WDC WD25 Model: WD-WMAL71747150 Rev: 2D08 Type: Direct-Access ANSI SCSI revision: SCSI device sda: 488397168 512-byte hdwr sectors (250059 MB) s

[Linux-usb-users] 互惠互利

2006-08-31 Thread jian
贵公司负责人(经理/财务)您好:   我是深圳市恒凯实业有限公司的。本公司是由一群国内进 出口代理与销售管理专业人士组成的,公司本着互惠互利的, 原则合理对外优惠代开发票,代开发票范围:(增值税票.普通国 税商品销售发票,地税广告发票、运输发票、其它服务发票、 租赁发票、维修发票、建筑安装发票、餐饮定额发票,)点数 优惠!本公同所开出税票真实有效,欢迎来电咨询!   (打扰之处,请谅解) 业务手机: 13590108911 联 系 人:简结英 -

[Linux-usb-users] 互惠互利

2006-08-31 Thread jian
贵公司负责人(经理/财务)您好:   我是深圳市恒凯实业有限公司的。本公司是由一群国内进 出口代理与销售管理专业人士组成的,公司本着互惠互利的, 原则合理对外优惠代开发票,代开发票范围:(增值税票.普通国 税商品销售发票,地税广告发票、运输发票、其它服务发票、 租赁发票、维修发票、建筑安装发票、餐饮定额发票,)点数 优惠!本公同所开出税票真实有效,欢迎来电咨询!   (打扰之处,请谅解) 业务手机: 13590108911 联 系 人:简结英 -