Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ce305b6a0815cae4288e77723f80fbc97f651f9a
Commit:     ce305b6a0815cae4288e77723f80fbc97f651f9a
Parent:     78167236e23bb3c80d2b35b693e578a6e56b1171
Author:     Dmitry Torokhov <[EMAIL PROTECTED]>
AuthorDate: Thu May 3 00:53:18 2007 -0400
Committer:  Dmitry Torokhov <[EMAIL PROTECTED]>
CommitDate: Thu May 3 00:53:18 2007 -0400

    Input: evdev - fix some sparse warnings (signedness, shadowing)
    
    Signed-off-by: Dmitry Torokhov <[EMAIL PROTECTED]>
---
 drivers/input/evdev.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/input/evdev.c b/drivers/input/evdev.c
index 6cff809..0b45d47 100644
--- a/drivers/input/evdev.c
+++ b/drivers/input/evdev.c
@@ -512,7 +512,7 @@ static long evdev_ioctl_handler(struct file *file, unsigned 
int cmd,
 
                                if ((_IOC_NR(cmd) & ~EV_MAX) == 
_IOC_NR(EVIOCGBIT(0,0))) {
 
-                                       long *bits;
+                                       unsigned long *bits;
                                        int len;
 
                                        switch (_IOC_NR(cmd) & EV_MAX) {
@@ -557,7 +557,7 @@ static long evdev_ioctl_handler(struct file *file, unsigned 
int cmd,
 
                                if ((_IOC_NR(cmd) & ~ABS_MAX) == 
_IOC_NR(EVIOCGABS(0))) {
 
-                                       int t = _IOC_NR(cmd) & ABS_MAX;
+                                       t = _IOC_NR(cmd) & ABS_MAX;
 
                                        abs.value = dev->abs[t];
                                        abs.minimum = dev->absmin[t];
@@ -577,7 +577,7 @@ static long evdev_ioctl_handler(struct file *file, unsigned 
int cmd,
 
                                if ((_IOC_NR(cmd) & ~ABS_MAX) == 
_IOC_NR(EVIOCSABS(0))) {
 
-                                       int t = _IOC_NR(cmd) & ABS_MAX;
+                                       t = _IOC_NR(cmd) & ABS_MAX;
 
                                        if (copy_from_user(&abs, p, 
sizeof(struct input_absinfo)))
                                                return -EFAULT;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to