public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Drivers: Misc: fix warnings, unsigned long will never < 0
@ 2013-04-07  3:09 Chen Gang
  2013-04-07  3:26 ` Chen Gang
  2013-04-07  3:28 ` [PATCH v2] " Chen Gang
  0 siblings, 2 replies; 9+ messages in thread
From: Chen Gang @ 2013-04-07  3:09 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Greg KH,
	linux-kernel@vger.kernel.org >> "linux-kernel@vger.kernel.org"


  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

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2013-05-08  3:28 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-07  3:09 [PATCH] Drivers: Misc: fix warnings, unsigned long will never < 0 Chen Gang
2013-04-07  3:26 ` Chen Gang
2013-04-07  3:28 ` [PATCH v2] " Chen Gang
2013-05-08  2:24   ` Chen Gang
2013-05-08  2:38     ` Greg KH
2013-05-08  2:46       ` Li Zefan
2013-05-08  2:49         ` Chen Gang
2013-05-08  2:54         ` Greg KH
2013-05-08  3:27           ` Chen Gang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox