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>

authored by WANG Cong and committed by Linus Torvalds 2d7197f4 77e38a55

+1 -1
+1 -1
arch/um/Kconfig.rest
··· 36 37 #This is just to shut up some Kconfig warnings, so no prompt. 38 config INPUT 39 - bool 40 default n 41 42 source "arch/um/Kconfig.debug"
··· 36 37 #This is just to shut up some Kconfig warnings, so no prompt. 38 config INPUT 39 + tristate 40 default n 41 42 source "arch/um/Kconfig.debug"