From: Greg KH To: torvalds@transmeta.com Cc: linux-usb-devel@lists.sourceforge.net Subject: [BK PATCH] USB changes for 2.5.17 Pull from: bk://linuxusb.bkbits.net/linus-2.5 drivers/usb/Makefile | 18 - drivers/usb/net/pegasus.c | 2 drivers/usb/net/pegasus.h | 3 drivers/usb/storage/Makefile | 10 drivers/usb/storage/datafab.c | 340 +++++++--------------------- drivers/usb/storage/jumpshot.c | 436 +++++++++--------------------------- drivers/usb/storage/raw_bulk.c | 337 +++++++++++++++++++++++++++ drivers/usb/storage/raw_bulk.h | 35 ++ drivers/usb/storage/scsiglue.c | 30 +- drivers/usb/storage/sddr09.c | 283 +---------------------- drivers/usb/storage/sddr55.c | 334 +++++---------------------- drivers/usb/storage/shuttle_usbat.c | 236 +------------------ drivers/usb/storage/transport.h | 11 13 files changed, 741 insertions(+), 1334 deletions(-) ------ ChangeSet@1.583, 2002-05-21 14:12:49-07:00, petkan@mastika.lnxw.com [PATCH] USB pegasus driver, new vendor and device id. new vendor and device ID drivers/usb/net/pegasus.c | 2 +- drivers/usb/net/pegasus.h | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) ------ ChangeSet@1.584, 2002-05-21 14:13:05-07:00, greg@kroah.com [PATCH] USB Makefile bug fix fixed problem with UHCI_HCD drivers set to 'y' were not causing the build to go into the drivers/usb/host directory. drivers/usb/Makefile | 18 ++++++++++-------- 1 files changed, 10 insertions(+), 8 deletions(-) ------ ChangeSet@1.585, 2002-05-21 14:13:26-07:00, Andries.Brouwer@cwi.nl [PATCH] usb-storage Created the first of a series of usb-storage patches this afternoon. Please find it below or on ftp.XX.kernel.org under people/aeb/2.5.16-us-patch . It removes 5% of the usb-storage code, but should, if I made no mistake, not affect the behaviour of the code. (This is the introduction of raw_bulk.c to hold USB-bulk and scatter-gather code that was repeated three-five times in various drivers. The next patch is smartmedia.c.) drivers/usb/storage/Makefile | 10 drivers/usb/storage/datafab.c | 340 +++++++--------------------- drivers/usb/storage/jumpshot.c | 436 +++++++++--------------------------- drivers/usb/storage/raw_bulk.c | 337 +++++++++++++++++++++++++++ drivers/usb/storage/raw_bulk.h | 35 ++ drivers/usb/storage/scsiglue.c | 30 +- drivers/usb/storage/sddr09.c | 283 +---------------------- drivers/usb/storage/sddr55.c | 334 +++++---------------------- drivers/usb/storage/shuttle_usbat.c | 236 +------------------ drivers/usb/storage/transport.h | 11 10 files changed, 727 insertions(+), 1325 deletions(-)