Remove ULL since it's useless. Signed-off-by: Ksenija Stanojevic <ksenija.stanojevic@xxxxxxxxx> --- drivers/staging/panel/panel.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/staging/panel/panel.c b/drivers/staging/panel/panel.c index 7138ee7..6dc3efb 100644 --- a/drivers/staging/panel/panel.c +++ b/drivers/staging/panel/panel.c @@ -2047,10 +2047,10 @@ static u8 input_name2mask(const char *name, __u64 *mask, __u64 *value, u8 im, om; __u64 m, v; - om = 0ULL; - im = 0ULL; - m = 0ULL; - v = 0ULL; + om = 0; + im = 0; + m = 0; + v = 0; while (*name) { int in, out, bit, neg; @@ -2076,9 +2076,9 @@ static u8 input_name2mask(const char *name, __u64 *mask, __u64 *value, bit = (out * 5) + in; - m |= 1ULL << bit; + m |= 1 << bit; if (!neg) - v |= 1ULL << bit; + v |= 1 << bit; name++; } *mask = m; -- 1.9.1 _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel