diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2009-10-09 11:47:21 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2009-10-09 11:47:21 +0000 |
commit | 748475b800c552236aff16c1beffd55b70791ae6 (patch) | |
tree | 340f14dfeb3cec4c1d7a89935efc526dd736fb89 /src/superio/ite/Kconfig | |
parent | ebb43d69439d847e87e18ac332e71b9b0476936a (diff) |
More kconfig cleanups:
- Use "default n" for all components that shall be "select"ed.
- Use "0x0" instead of "0" for hex variables for clarity and to reduce
the risk of people passing integer instead of hex values to such variables.
- Add TODO comments for boards that have irq_tables.c but don' set
CONFIG_HAVE_PIRQ_TABLE = 1. Someone with the hardware should test enabling.
- ASUS M2V-MX SE doesn't have irq_tables.c so don't define
IRQ_SLOT_COUNT in its Kconfig file.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4749 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/superio/ite/Kconfig')
-rw-r--r-- | src/superio/ite/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/superio/ite/Kconfig b/src/superio/ite/Kconfig index 066498149b..609b4b604f 100644 --- a/src/superio/ite/Kconfig +++ b/src/superio/ite/Kconfig @@ -1,14 +1,21 @@ config SUPERIO_ITE_IT8661F bool + default n config SUPERIO_ITE_IT8671F bool + default n config SUPERIO_ITE_IT8673F bool + default n config SUPERIO_ITE_IT8705F bool + default n config SUPERIO_ITE_IT8712F bool + default n config SUPERIO_ITE_IT8716F bool + default n config SUPERIO_ITE_IT8718F bool + default n |