Skip to content

Commit

Permalink
Input: drivers/usb/input - fix sparse warnings (signedness)
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
  • Loading branch information
Dmitry Torokhov committed May 3, 2007
1 parent ce305b6 commit 4ee1fc8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion drivers/usb/input/acecad.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};

Expand Down
2 changes: 1 addition & 1 deletion drivers/usb/input/kbtab.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion drivers/usb/input/wacom_wac.h
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit 4ee1fc8

Please sign in to comment.