diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2018-06-10 06:25:01 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2018-06-13 09:50:57 +0800 |
commit | fcfc8a82b10c8acb844b8f0ed6c5d2cadce1291f (patch) | |
tree | 580c1e6caf6fff431e10821c8b871f120802a791 /arch/x86/Kconfig | |
parent | 594d089c8a6439910b7df784e8929b65229b9e91 (diff) | |
download | u-boot-fcfc8a82b10c8acb844b8f0ed6c5d2cadce1291f.tar.gz |
x86: Conditionally build the pinctrl_ich6 driver
The pinctrl_ich6 driver is currently unconditionally built for all
x86 boards. Let's use a Kconfig option to control the build.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/Kconfig')
-rw-r--r-- | arch/x86/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 5c23b2cb57..18c7fb2d49 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -735,6 +735,12 @@ config I8259_PIC slave) interrupt controllers. Include this to have U-Boot set up the interrupt correctly. +config PINCTRL_ICH6 + bool + help + Intel ICH6 compatible chipset pinctrl driver. It needs to work + together with the ICH6 compatible gpio driver. + config I8254_TIMER bool default y |