From: Greg KH To: torvalds@transmeta.com Cc: linux-usb-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org Subject: [BK PATCH] More USB changes for 2.5.68 Hi, Here are some more USB changes and fixes for 2.5.68. There are a few bugs fixed as found by the CHECKER project, and a usbnet driver rework and a few other minor changes. Please pull from: bk://kernel.bkbits.net/gregkh/linux/linus-2.5 Patches will be posted to linux-usb-devel as a follow-up thread for those who want to see them. thanks, greg k-h drivers/input/joystick/sidewinder.c | 11 +- drivers/input/misc/uinput.c | 35 ++++--- drivers/usb/Makefile | 1 drivers/usb/core/urb.c | 31 +++++- drivers/usb/host/uhci-hcd.c | 13 +- drivers/usb/input/usbkbd.c | 3 drivers/usb/input/usbmouse.c | 3 drivers/usb/media/vicam.c | 5 - drivers/usb/net/Kconfig | 175 +++++++++++++++++++++++++++--------- drivers/usb/net/Makefile | 1 drivers/usb/net/usbnet.c | 113 +++++++++++++++-------- drivers/usb/serial/empeg.c | 4 drivers/usb/serial/io_edgeport.c | 6 - drivers/usb/serial/ipaq.c | 2 drivers/usb/serial/keyspan.c | 4 drivers/usb/serial/usb-serial.h | 2 drivers/usb/storage/unusual_devs.h | 33 ++++++ include/linux/usb.h | 3 18 files changed, 321 insertions(+), 124 deletions(-) ----- : o USB: vicam.c copyright patches : o USB: fix usbkbd.c compilation error : o USB: Add support for Pentax Still Camera to linux kernel : o USB: fix up usb.h's dbg macro to take up less space o USB: fix up usb_serial.h's dbg macro to take up less space o USB: fix up usbnet's macros for older compilers : o USB: add support for Mello MP3 Player Alan Stern : o USB: Minor patch for uhci-hcd.c David Brownell : o USB: usbnet, config changes for CDC Ether Greg Kroah-Hartman : o USB: add comment to storage/unusual_devs.h that specifies how to add new entries o USB: added support for Sony DSC-P8 o USB: create usb_init_urb() for those people who like to live dangerously (like the bluetooth stack.) o USB: fix CHECKER found bug in the keyspan.c driver o USB: fix CHECKER found bug in the ipaq.c driver o USB: fix CHECKER found bug in the io_edgeport.c driver o USB: fix CHECKER found bug in the empeg.c driver Randy Dunlap : o uinput.c: reduce stack usage o sidewinder: reduce stack usage