diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-09-08 09:47:36 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-10-02 00:04:35 (GMT) |
commit | b98278be7bd64f8726b388416947118f65077b2b (patch) | |
tree | 1e42301cc8dc051714f25e9d368eae2ebcbdf013 /drivers/input | |
parent | 558e12571e3cc949837ab0c232a1bb528a8f95da (diff) | |
download | u-boot-b98278be7bd64f8726b388416947118f65077b2b.tar.xz |
input: specify the default of I8042_KEYB in more correct manner
Creating multiple entries of "config FOO" often gives us bad
experiences. In this case, we should specify "default X86"
as platforms that want this keyboard by default.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Marek Vasut <marex@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/Kconfig b/drivers/input/Kconfig index d560328..b3873c1 100644 --- a/drivers/input/Kconfig +++ b/drivers/input/Kconfig @@ -17,6 +17,7 @@ config CROS_EC_KEYB config I8042_KEYB bool "Enable Intel i8042 keyboard support" depends on DM_KEYBOARD + default X86 help This adds a driver for the i8042 keyboard controller, allowing the keyboard to be used on devices which support this controller. The |