[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20090417092028.GB31897@hack>
Date: Fri, 17 Apr 2009 17:20:29 +0800
From: Américo Wang <xiyou.wangcong@...il.com>
To: LKML <linux-kernel@...r.kernel.org>
Cc: Sam Ravnborg <sam@...nborg.org>, Jeff Dike <jdike@...toit.com>,
Andrew Morton <akpm@...l.org>,
user-mode-linux-devel@...ts.sourceforge.net
Subject: [Patch] uml: kill a kconfig warning
Got this warning from Kconfig:
boolean symbol INPUT tested for 'm'? test forced to 'n'
because INPUT is tristate, not bool. The patch below fixes it.
Signed-off-by: WANG Cong <xiyou.wangcong@...il.com>
Cc: Sam Ravnborg <sam@...nborg.org>
Cc: Jeff Dike <jdike@...toit.com>
--
diff --git a/arch/um/Kconfig.rest b/arch/um/Kconfig.rest
index 7b5cea7..0ccad0f 100644
--- a/arch/um/Kconfig.rest
+++ b/arch/um/Kconfig.rest
@@ -36,7 +36,7 @@ source "drivers/leds/Kconfig"
#This is just to shut up some Kconfig warnings, so no prompt.
config INPUT
- bool
+ tristate
default n
source "arch/um/Kconfig.debug"
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists