diff options
author | WANG Cong <xiyou.wangcong@gmail.com> | 2009-04-21 12:24:52 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-21 13:41:50 -0700 |
commit | 2d7197f412e75587037449960bc4c7ea06155a7f (patch) | |
tree | bfcbdf73e028eac3776bf5efa09f945f93fdf2e2 /arch/um | |
parent | 77e38a554aae2c3cdbf852117bc09bac6f95dae1 (diff) | |
download | op-kernel-dev-2d7197f412e75587037449960bc4c7ea06155a7f.zip op-kernel-dev-2d7197f412e75587037449960bc4c7ea06155a7f.tar.gz |
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.
Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/Kconfig.rest | 2 |
1 files changed, 1 insertions, 1 deletions
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" |