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/intel | |
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/intel')
-rw-r--r-- | src/mainboard/intel/d810e2cb/Kconfig | 1 | ||||
-rw-r--r-- | src/mainboard/intel/d810e2cb/mainboard.c | 5 | ||||
-rw-r--r-- | src/mainboard/intel/eagleheights/mainboard.c | 5 | ||||
-rw-r--r-- | src/mainboard/intel/emeraldlake2/Kconfig | 1 | ||||
-rw-r--r-- | src/mainboard/intel/emeraldlake2/mainboard.c | 5 |
5 files changed, 0 insertions, 17 deletions
diff --git a/src/mainboard/intel/d810e2cb/Kconfig b/src/mainboard/intel/d810e2cb/Kconfig index 8c6c76b021..0725c58ef7 100644 --- a/src/mainboard/intel/d810e2cb/Kconfig +++ b/src/mainboard/intel/d810e2cb/Kconfig @@ -29,7 +29,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy select USE_WATCHDOG_ON_BOOT select UDELAY_TSC select BOARD_ROMSIZE_KB_512 - select HAVE_MAINBOARD_RESOURCES select GFXUMA config MAINBOARD_DIR diff --git a/src/mainboard/intel/d810e2cb/mainboard.c b/src/mainboard/intel/d810e2cb/mainboard.c index 8455377473..9db723b490 100644 --- a/src/mainboard/intel/d810e2cb/mainboard.c +++ b/src/mainboard/intel/d810e2cb/mainboard.c @@ -20,11 +20,6 @@ #include <device/device.h> #include <boot/tables.h> -int add_mainboard_resources(struct lb_memory *mem) -{ - return 0; -} - struct chip_operations mainboard_ops = { CHIP_NAME("Intel D810E2CB Mainboard") }; diff --git a/src/mainboard/intel/eagleheights/mainboard.c b/src/mainboard/intel/eagleheights/mainboard.c index d6bc10f618..7b27358530 100644 --- a/src/mainboard/intel/eagleheights/mainboard.c +++ b/src/mainboard/intel/eagleheights/mainboard.c @@ -24,11 +24,6 @@ #include <boot/tables.h> #include <arch/coreboot_tables.h> -int add_mainboard_resources(struct lb_memory *mem) -{ - return 0; -} - struct chip_operations mainboard_ops = { CHIP_NAME("Intel Eagle Heights Mainboard") }; diff --git a/src/mainboard/intel/emeraldlake2/Kconfig b/src/mainboard/intel/emeraldlake2/Kconfig index 873d273e1f..aaca694072 100644 --- a/src/mainboard/intel/emeraldlake2/Kconfig +++ b/src/mainboard/intel/emeraldlake2/Kconfig @@ -12,7 +12,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy select HAVE_ACPI_TABLES select HAVE_OPTION_TABLE select HAVE_ACPI_RESUME - select HAVE_MAINBOARD_RESOURCES select MMCONF_SUPPORT select HAVE_SMI_HANDLER select GFXUMA diff --git a/src/mainboard/intel/emeraldlake2/mainboard.c b/src/mainboard/intel/emeraldlake2/mainboard.c index 796f71e4e7..71832e7e88 100644 --- a/src/mainboard/intel/emeraldlake2/mainboard.c +++ b/src/mainboard/intel/emeraldlake2/mainboard.c @@ -42,11 +42,6 @@ void mainboard_suspend_resume(void) outb(0xcb, 0xb2); } -int add_mainboard_resources(struct lb_memory *mem) -{ - return 0; -} - #if defined(CONFIG_PCI_OPTION_ROM_RUN_REALMODE) && CONFIG_PCI_OPTION_ROM_RUN_REALMODE static int int15_handler(struct eregs *regs) { |