diff options
| author | Grant Likely <grant.likely@secretlab.ca> | 2007-02-20 09:05:45 +0100 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2007-02-20 09:05:45 +0100 | 
| commit | eb867a76238fb38e952c37871b16d0d7fd61c95f (patch) | |
| tree | 7db1f4941c4e51073b7a6d600a9432b51e2f56fa /common/usb_storage.c | |
| parent | 53758fa20e935cc87eeb0519ed365df753a6f289 (diff) | |
| download | olio-uboot-2014.01-eb867a76238fb38e952c37871b16d0d7fd61c95f.tar.xz olio-uboot-2014.01-eb867a76238fb38e952c37871b16d0d7fd61c95f.zip | |
[PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write buffer pointers
Block device read/write is anonymous data; there is no need to use a
typed pointer.  void * is fine.  Also add a hook for block_read functions
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'common/usb_storage.c')
| -rw-r--r-- | common/usb_storage.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/usb_storage.c b/common/usb_storage.c index b4b791408..196ceb735 100644 --- a/common/usb_storage.c +++ b/common/usb_storage.c @@ -169,7 +169,7 @@ static struct us_data usb_stor[USB_MAX_STOR_DEV];  int usb_stor_get_info(struct usb_device *dev, struct us_data *us, block_dev_desc_t *dev_desc);  int usb_storage_probe(struct usb_device *dev, unsigned int ifnum,struct us_data *ss); -unsigned long usb_stor_read(int device, unsigned long blknr, unsigned long blkcnt, unsigned long *buffer); +unsigned long usb_stor_read(int device, unsigned long blknr, unsigned long blkcnt, void *buffer);  struct usb_device * usb_get_dev_index(int index);  void uhci_show_temp_int_td(void); @@ -941,7 +941,7 @@ static void usb_bin_fixup(struct usb_device_descriptor descriptor,  #define USB_MAX_READ_BLK 20 -unsigned long usb_stor_read(int device, unsigned long blknr, unsigned long blkcnt, unsigned long *buffer) +unsigned long usb_stor_read(int device, unsigned long blknr, unsigned long blkcnt, void *buffer)  {  	unsigned long start,blks, buf_addr;  	unsigned short smallblks; |