diff options
author | Peter Stuge <peter@stuge.se> | 2011-05-15 22:40:40 +0000 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2011-05-15 22:40:40 +0000 |
commit | 16c8e37a2d4e5164742c605b5894d31d9cbab3e1 (patch) | |
tree | 219f59a82f0daf2dfc02a412859a7852981af17d /src/northbridge | |
parent | 8c462637212735b1850c22f7cd51e0c947f28564 (diff) | |
download | coreboot-16c8e37a2d4e5164742c605b5894d31d9cbab3e1.tar.xz |
agesa_wrapper: Avoid repetitive Kconfig depends, trivial
Signed-off-by: Peter Stuge <peter@stuge.se>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6595 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge')
-rw-r--r-- | src/northbridge/amd/agesa_wrapper/family14/Kconfig | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/northbridge/amd/agesa_wrapper/family14/Kconfig b/src/northbridge/amd/agesa_wrapper/family14/Kconfig index 70041d6262..ed4c5c7019 100644 --- a/src/northbridge/amd/agesa_wrapper/family14/Kconfig +++ b/src/northbridge/amd/agesa_wrapper/family14/Kconfig @@ -21,27 +21,26 @@ config NORTHBRIDGE_AMD_AGESA_WRAPPER_FAMILY14 select MMCONF_SUPPORT select NORTHBRIDGE_AMD_AGESA_WRAPPER_FAMILY14_ROOT_COMPLEX +if NORTHBRIDGE_AMD_AGESA_WRAPPER_FAMILY14 + config HW_MEM_HOLE_SIZEK hex default 0x100000 - depends on NORTHBRIDGE_AMD_AGESA_WRAPPER_FAMILY14 config HW_MEM_HOLE_SIZE_AUTO_INC bool default n - depends on NORTHBRIDGE_AMD_AGESA_WRAPPER_FAMILY14 config MMCONF_BASE_ADDRESS hex default 0xf8000000 - depends on NORTHBRIDGE_AMD_AGESA_WRAPPER_FAMILY14 config MMCONF_BUS_NUMBER int default 16 - depends on NORTHBRIDGE_AMD_AGESA_WRAPPER_FAMILY14 config BOOTBLOCK_NORTHBRIDGE_INIT string default "northbridge/amd/agesa_wrapper/family14/bootblock.c" - depends on NORTHBRIDGE_AMD_AGESA_WRAPPER_FAMILY14 + +endif |