uml: kill a kconfig warning

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Linux Kernel Mailing List
Date: Tuesday, April 21, 2009 - 3:00 pm

Gitweb:     http://git.kernel.org/linus/2d7197f412e75587037449960bc4c7ea06155a7f
Commit:     2d7197f412e75587037449960bc4c7ea06155a7f
Parent:     77e38a554aae2c3cdbf852117bc09bac6f95dae1
Author:     WANG Cong <xiyou.wangcong@gmail.com>
AuthorDate: Tue Apr 21 12:24:52 2009 -0700
Committer:  Linus Torvalds <torvalds@linux-foundation.org>
CommitDate: Tue Apr 21 13:41:50 2009 -0700

    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>
---
 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"
--
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
uml: kill a kconfig warning, Linux Kernel Mailing ..., (Tue Apr 21, 3:00 pm)