Staging: panel: Remove ULL
authorKsenija Stanojevic <ksenija.stanojevic@gmail.com>
Sun, 3 Jan 2016 19:42:26 +0000 (20:42 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 29 Jan 2016 06:23:38 +0000 (22:23 -0800)
Remove ULL on om and im, since it's useless.

Signed-off-by: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/panel/panel.c

index 7138ee7d217a0f6c63176944e330fc3a8073eb5c..e9641ea7e4771c1bdef753d115ec42c9a844f32c 100644 (file)
@@ -2047,8 +2047,8 @@ static u8 input_name2mask(const char *name, __u64 *mask, __u64 *value,
        u8 im, om;
        __u64 m, v;
 
-       om = 0ULL;
-       im = 0ULL;
+       om = 0;
+       im = 0;
        m = 0ULL;
        v = 0ULL;
        while (*name) {
This page took 0.027899 seconds and 5 git commands to generate.