2002-10-03 05:40:19

by Greg KH

[permalink] [raw]
Subject: [BK PATCH] USB changes for 2.5.40

This series also includes a bugfix to the driver core hotplug logic.

Please pull from: bk://linuxusb.bkbits.net/linus-2.5

thanks,

greg k-h

drivers/usb/serial/usbserial.c | 1950 ----------------------------------------
drivers/base/hotplug.c | 1
drivers/usb/Makefile | 1
drivers/usb/core/message.c | 13
drivers/usb/core/usb.c | 2
drivers/usb/input/usbkbd.c | 4
drivers/usb/misc/Config.help | 6
drivers/usb/misc/Config.in | 1
drivers/usb/misc/Makefile | 1
drivers/usb/misc/speedtouch.c | 15
drivers/usb/misc/usbtest.c | 570 +++++++++++
drivers/usb/net/pegasus.h | 2
drivers/usb/net/rtl8150.c | 61 +
drivers/usb/serial/Makefile | 9
drivers/usb/serial/console.c | 266 +++++
drivers/usb/serial/usb-serial.c | 1683 ++++++++++++++++++++++++++++++++++
drivers/usb/serial/usb-serial.h | 15
17 files changed, 2624 insertions(+), 1976 deletions(-)
-----

[email protected], 2002-10-02 22:34:04-07:00, [email protected]
USB: split the usb serial console code out into its own file.

drivers/usb/serial/usbserial.c | 1950 ----------------------------------------
drivers/usb/serial/Makefile | 9
drivers/usb/serial/console.c | 266 +++++
drivers/usb/serial/usb-serial.c | 1683 ++++++++++++++++++++++++++++++++++
drivers/usb/serial/usb-serial.h | 15
5 files changed, 1970 insertions(+), 1953 deletions(-)
------

[email protected], 2002-10-02 16:22:25-07:00, [email protected]
[PATCH] hotplug: fix for non-pci and usb calls

clear the environment variables so for busses without callbacks, we can
successfully call /sbin/hotplug.

Thanks to [email protected] for finding this bug.

drivers/base/hotplug.c | 1 +
1 files changed, 1 insertion(+)
------

[email protected], 2002-10-02 14:44:06-07:00, [email protected]
USB: speedtouch driver fix due to ioctl function parameter change

drivers/usb/misc/speedtouch.c | 15 ++++++++-------
1 files changed, 8 insertions(+), 7 deletions(-)
------

[email protected], 2002-10-02 14:26:29-07:00, [email protected]
[PATCH] USB: framework for testing usbcore

USB test driver

drivers/usb/Makefile | 1
drivers/usb/misc/Config.help | 6
drivers/usb/misc/Config.in | 1
drivers/usb/misc/Makefile | 1
drivers/usb/misc/usbtest.c | 570 +++++++++++++++++++++++++++++++++++++++++++
5 files changed, 579 insertions(+)
------

[email protected], 2002-10-02 14:21:13-07:00, [email protected]
[PATCH] USB: string query fix

Query for stringlen before reading a string in usb.c

drivers/usb/core/message.c | 13 +++++++++----
1 files changed, 9 insertions(+), 4 deletions(-)
------

[email protected], 2002-10-02 11:48:32-07:00, [email protected]
[PATCH] 2.5.40: warning fix for drivers/usb/core/usb.c

usb_hotplug()' prototype doesn't match when CONFIG_HOTPLUG is not defined.

drivers/usb/core/usb.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
------

[email protected], 2002-10-02 11:47:51-07:00, [email protected]
[PATCH] USB: usbkbd fix


drivers/usb/input/usbkbd.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
------

[email protected], 2002-10-02 11:21:03-07:00, [email protected]
[PATCH] USB: pegasus update

device ID fix

drivers/usb/net/pegasus.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
------

[email protected], 2002-10-02 11:16:55-07:00, [email protected]
[PATCH] USB: rtl8150 update

set_mac_address is now added to the driver. thanks to Orjan Friberg <[email protected]>
the actual writing to the eeprom is disabled by default

drivers/usb/net/rtl8150.c | 61 +++++++++++++++++++++++++++++++++++++++-------
1 files changed, 53 insertions(+), 8 deletions(-)
------