diff options
| author | Chris Malley <mail@chrismalley.co.uk> | 2008-10-25 17:07:32 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-10-29 17:54:40 -0400 |
| commit | b361a6e348a5de9e18eb17542663d34a57740e87 (patch) | |
| tree | ef70ae0b29ceadb3184fe03c569bed59d7d268cf /drivers | |
| parent | cde217a556ec552d28ac9e136c5a94684a69ae94 (diff) | |
USB: usbtmc: Use explicit unsigned type for input buffer instead of char*
Silences compiler warning about comparison with 0x80, and type now matches the
corresponding _bulk_out function.
drivers/usb/class/usbtmc.c: In function ‘usbtmc_ioctl_abort_bulk_in’:
drivers/usb/class/usbtmc.c:163: warning: comparison is always false due to limited range of data type
Signed-off-by: Chris Malley <mail@chrismalley.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/usb/class/usbtmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/class/usbtmc.c b/drivers/usb/class/usbtmc.c index 543811f6e6e8..8e74657f106c 100644 --- a/drivers/usb/class/usbtmc.c +++ b/drivers/usb/class/usbtmc.c | |||
| @@ -133,7 +133,7 @@ static int usbtmc_release(struct inode *inode, struct file *file) | |||
| 133 | 133 | ||
| 134 | static int usbtmc_ioctl_abort_bulk_in(struct usbtmc_device_data *data) | 134 | static int usbtmc_ioctl_abort_bulk_in(struct usbtmc_device_data *data) |
| 135 | { | 135 | { |
| 136 | char *buffer; | 136 | u8 *buffer; |
| 137 | struct device *dev; | 137 | struct device *dev; |
| 138 | int rv; | 138 | int rv; |
| 139 | int n; | 139 | int n; |
