diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2012-08-02 09:48:38 +0300 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2012-08-08 03:44:51 +0200 |
commit | 1c5071d1753b759f1f3c58fca93eaa7a0aabb804 (patch) | |
tree | cfdf71c3d7da8f055e7629c415108a1ca1076eae /src/mainboard/amd/tilapia_fam10 | |
parent | 62673c0290790da8eaee6a4d3f951ec29d0e6fa9 (diff) | |
download | coreboot-1c5071d1753b759f1f3c58fca93eaa7a0aabb804.tar.xz |
Drop HAVE_MAINBOARD_RESOURCES
These existed to provide a hook to add reserved memory regions
in the coreboot memory table. Reserved memory are now
added as resources.
Change-Id: I9f83df33845cfa6973b018a51cf9444dbf0f8667
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/1414
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Tested-by: build bot (Jenkins)
Reviewed-by: Peter Stuge <peter@stuge.se>
Diffstat (limited to 'src/mainboard/amd/tilapia_fam10')
-rw-r--r-- | src/mainboard/amd/tilapia_fam10/Kconfig | 1 | ||||
-rw-r--r-- | src/mainboard/amd/tilapia_fam10/mainboard.c | 5 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/mainboard/amd/tilapia_fam10/Kconfig b/src/mainboard/amd/tilapia_fam10/Kconfig index 2c29f45f4a..75e22b3639 100644 --- a/src/mainboard/amd/tilapia_fam10/Kconfig +++ b/src/mainboard/amd/tilapia_fam10/Kconfig @@ -14,7 +14,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy select HAVE_OPTION_TABLE select HAVE_PIRQ_TABLE select HAVE_MP_TABLE - select HAVE_MAINBOARD_RESOURCES select SB_HT_CHAIN_UNITID_OFFSET_ONLY select LIFT_BSP_APIC_ID select SERIAL_CPU_INIT diff --git a/src/mainboard/amd/tilapia_fam10/mainboard.c b/src/mainboard/amd/tilapia_fam10/mainboard.c index f6555134e8..b11f10bc19 100644 --- a/src/mainboard/amd/tilapia_fam10/mainboard.c +++ b/src/mainboard/amd/tilapia_fam10/mainboard.c @@ -284,11 +284,6 @@ static void tilapia_enable(device_t dev) set_gpio40_gfx(); } -int add_mainboard_resources(struct lb_memory *mem) -{ - return 0; -} - struct chip_operations mainboard_ops = { CHIP_NAME("AMD TILAPIA Mainboard") .enable_dev = tilapia_enable, |