[linux-usb-devel] Re: [PATCH] More USB fixes for 2.6.0-test2

2003-08-14 Thread Greg KH
ChangeSet 1.1119.1.5, 2003/08/06 15:51:06-07:00, [EMAIL PROTECTED] [PATCH] USB: remove GFP_DMA from pegasus GFP_DMA has no place in USB drivers, as its meaning is inconsistent across architectures. drivers/usb/net/pegasus.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)

[linux-usb-devel] Re: [PATCH] More USB fixes for 2.6.0-test2

2003-08-14 Thread Greg KH
ChangeSet 1.1119.1.3, 2003/08/06 15:50:39-07:00, [EMAIL PROTECTED] [PATCH] USB: ohci-hcd, minor d3cold resume fix The ohci d3cold resume path kept re-creating the sysfs files, and that seemed eventually to cause an oops. This patch only creates them on first initialization, not re-init; and

Re: [linux-usb-devel] Re: [PATCH] More USB fixes for 2.6.0-test2

2003-08-14 Thread Alan Cox
On Sad, 2003-08-09 at 01:15, Greg KH wrote: ChangeSet 1.1119.1.9, 2003/08/06 15:51:53-07:00, [EMAIL PROTECTED] [PATCH] USB: use of __devinit in st5481 But you CAN NOT mark the usb_device_id table as __devinitdata or __initdata as that will be touched later on if a new USB device is

[linux-usb-devel] Re: [PATCH] More USB fixes for 2.6.0-test2

2003-08-14 Thread Greg KH
ChangeSet 1.1119.1.9, 2003/08/06 15:51:53-07:00, [EMAIL PROTECTED] [PATCH] USB: use of __devinit in st5481 But you CAN NOT mark the usb_device_id table as __devinitdata or __initdata as that will be touched later on if a new USB device is added, or if a new usb module is loaded. So these

[linux-usb-devel] Re: [PATCH] More USB fixes for 2.6.0-test2

2003-08-14 Thread Greg KH
ChangeSet 1.1119.1.12, 2003/08/06 16:02:14-07:00, [EMAIL PROTECTED] [PATCH] USB: fixes for usb-skeleton.c I've found minor errors in usb-skeleton.c. First, there is no valid value of interface-minor in assignment to dev-minor. Second, when calling usb_deregister_dev the interface-minor must be

Re: [linux-usb-devel] Re: [PATCH] More USB fixes for 2.6.0-test2

2003-08-14 Thread Oliver Neukum
Am Samstag, 9. August 2003 12:44 schrieb Alan Cox: On Sad, 2003-08-09 at 01:15, Greg KH wrote: ChangeSet 1.1119.1.9, 2003/08/06 15:51:53-07:00, [EMAIL PROTECTED] [PATCH] USB: use of __devinit in st5481 But you CAN NOT mark the usb_device_id table as __devinitdata or __initdata as

[linux-usb-devel] Re: [PATCH] More USB fixes for 2.6.0-test2

2003-08-14 Thread Greg KH
ChangeSet 1.1119.1.2, 2003/08/06 13:41:19-07:00, [EMAIL PROTECTED] [PATCH] USB: remove all struct device.name usage from the USB code. This is because that field is going away shortly... drivers/usb/core/hcd-pci.c |3 - drivers/usb/core/hub.c |4 - drivers/usb/core/usb.c

[linux-usb-devel] Re: [PATCH] More USB fixes for 2.6.0-test2

2003-08-14 Thread Greg KH
ChangeSet 1.1119.1.7, 2003/08/06 15:51:29-07:00, [EMAIL PROTECTED] [PATCH] USB: usb_new_device() updates Changes a handful of things in enumeration error paths. Bugfixes: - consistent cleanup, and consistent return of -Ewhatever/0; - a usb_put_dev() gets rid of the extra refcount; this

[linux-usb-devel] Re: [PATCH] More USB fixes for 2.6.0-test2

2003-08-14 Thread Greg KH
ChangeSet 1.1119.1.14, 2003/08/08 16:35:07-07:00, [EMAIL PROTECTED] [PATCH] USB: ftdi_sio - VID/PID for ID TECH IDT1221U USB to RS-232 adapter This patch adds support for ID TECH's IDT1221U USB to RS-232 adapter (intended for use and/or supplied with some of their magnetic/smart card readers).

[linux-usb-devel] Re: [PATCH] More USB fixes for 2.6.0-test2

2003-08-14 Thread Greg KH
ChangeSet 1.1119.1.10, 2003/08/06 15:52:06-07:00, [EMAIL PROTECTED] [PATCH] USB: dvb usb driver sleeping in interrupt submitting an URB in a completion handler requires GFP_ATOMIC to be used. - usb_submit_urb must use GFP_ATOMIC in interrupt

[linux-usb-devel] Re: [PATCH] More USB fixes for 2.6.0-test2

2003-08-12 Thread Greg KH
ChangeSet 1.1119.1.6, 2003/08/06 15:51:17-07:00, [EMAIL PROTECTED] [PATCH] USB: DMA coherency issue with rtl8150 DMA to a part of a structure is forbidden on the noncoherent architectures. drivers/usb/net/rtl8150.c | 14 -- 1 files changed, 12 insertions(+), 2 deletions(-)

[linux-usb-devel] Re: [PATCH] More USB fixes for 2.6.0-test2

2003-08-10 Thread Greg KH
ChangeSet 1.1119.1.11, 2003/08/06 16:02:01-07:00, [EMAIL PROTECTED] [PATCH] USB: usbnet, prevent exotic rtnl deadlock Turns out that when PM is in use, some D3cold resume paths could have one thread, holding the network lock, deadlock in flush_scheduled_work() since an event task is waiting for

[linux-usb-devel] Re: [PATCH] More USB fixes for 2.6.0-test2

2003-08-10 Thread Greg KH
ChangeSet 1.1119.1.4, 2003/08/06 15:50:53-07:00, [EMAIL PROTECTED] [PATCH] USB: usb-storage: Move static string out of initializers.h This patch seems to have fallen through the cracks. It takes a string constant defined as a macro in initializers.h and instead makes it a static string in

[linux-usb-devel] Re: [PATCH] More USB fixes for 2.6.0-test2

2003-08-08 Thread Greg KH
ChangeSet 1.1119.1.8, 2003/08/06 15:51:41-07:00, [EMAIL PROTECTED] [PATCH] USB: disable both sides of usb device ep0 at once This eliminates an error case (current cost, memleak) when disabling endpoints that have control requests queued. drivers/usb/core/hcd.c |3 ++- 1 files changed, 2

[linux-usb-devel] Re: [PATCH] More USB fixes for 2.6.0-test2

2003-08-08 Thread Greg KH
ChangeSet 1.1119.1.13, 2003/08/07 11:00:56-07:00, [EMAIL PROTECTED] [PATCH] USB: remove dev.name usage from gadget code. drivers/usb/gadget/net2280.c |1 - 1 files changed, 1 deletion(-) diff -Nru a/drivers/usb/gadget/net2280.c b/drivers/usb/gadget/net2280.c ---