lkml.org 
[lkml]   [2013]   [Apr]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH] Drivers: Misc: fix warnings, unsigned long will never < 0

val is unsigned long which never < 0

Signed-off-by: Chen Gang <gang.chen@asianux.com>
---
drivers/misc/tsl2550.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/misc/tsl2550.c b/drivers/misc/tsl2550.c
index 1e7bc0e..558dd20 100644
--- a/drivers/misc/tsl2550.c
+++ b/drivers/misc/tsl2550.c
@@ -204,7 +204,7 @@ static ssize_t tsl2550_store_power_state(struct device *dev,
unsigned long val = simple_strtoul(buf, NULL, 10);
int ret;

- if (val < 0 || val > 1)
+ if (val > 1)
return -EINVAL;

mutex_lock(&data->update_lock);
--
1.7.7.6

\
 
 \ /
  Last update: 2013-04-07 06:01    [W:1.525 / U:0.364 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site