mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
Input: drivers/usb/input - fix sparse warnings (signedness)
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
parent
ce305b6a08
commit
4ee1fc8e55
3 changed files with 3 additions and 3 deletions
|
@ -54,7 +54,7 @@ struct usb_acecad {
|
|||
struct input_dev *input;
|
||||
struct urb *irq;
|
||||
|
||||
signed char *data;
|
||||
unsigned char *data;
|
||||
dma_addr_t data_dma;
|
||||
};
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ module_param(kb_pressure_click, int, 0);
|
|||
MODULE_PARM_DESC(kb_pressure_click, "pressure threshold for clicks");
|
||||
|
||||
struct kbtab {
|
||||
signed char *data;
|
||||
unsigned char *data;
|
||||
dma_addr_t data_dma;
|
||||
struct input_dev *dev;
|
||||
struct usb_device *usbdev;
|
||||
|
|
|
@ -39,7 +39,7 @@ struct wacom_features {
|
|||
};
|
||||
|
||||
struct wacom_wac {
|
||||
signed char *data;
|
||||
unsigned char *data;
|
||||
int tool[2];
|
||||
int id[2];
|
||||
__u32 serial[2];
|
||||
|
|
Loading…
Reference in a new issue