summaryrefslogtreecommitdiffstats
path: root/drivers/usb/storage
Commit message (Collapse)AuthorAgeFilesLines
* Treewide: remove address of the Free Software FoundationSascha Hauer2012-09-174-16/+0
| | | | | | | The FSF address has changed in the past. Instead of updating it each time the address changes, just drop it completely treewide. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* USB storage: use dma_alloc where appropriateSascha Hauer2012-06-301-4/+7
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* usb storage: fix driver nameSascha Hauer2012-05-231-1/+1
| | | | | | | | We have to set the name in struct usb_driver, not the one in struct driver_d which gets overwritten with usb_driver->name during registration. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* usb: fix driver nameJean-Christophe PLAGNIOL-VILLARD2012-04-231-1/+0
| | | | | | | | use the usb_driver name otherwise we will have a NULL driver entry in devinfo Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* USB storage: fix disconnectSascha Hauer2012-02-152-17/+7
| | | | | | USB storage support missed disconnect support. Implement this. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* storage/usb.c: fix test_unit_readyMichael Grzeschik2011-12-071-2/+2
| | | | | | | | | | | | This is needed for the ohci-at91 to work. In u-boot this function was transmitting a cmdlen of 12, by the initial commit. There are similar functions like usb_request_sense, usb_read_capacity nearby which also transmit 12 byte per default on u-boot, which probably also need a fix. Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Use generic block layer to access the drives and do partition parsingJuergen Beisert2011-11-283-57/+76
| | | | | | | Change all relevant blockdevice users to the simplified interface. Signed-off-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* USB Mass Storage driver: Fix compile time warningJuergen Beisert2011-11-281-1/+1
| | | | | | | | drivers/usb/storage/usb.c: In function 'usb_stor_blk_io': drivers/usb/storage/usb.c:257:16: warning: comparison of distinct pointer types lacks a cast Signed-off-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* USB mass storage device driver initial implementationRosen Kolev2011-09-236-0/+1067
Implemented an initial version of USB mass storage device driver, supporting USB mass storage devices with SCSI interface and BBB protocol. It implements the ATA interface and registers diskovered LUNs with the disk driver.