summaryrefslogtreecommitdiff
path: root/src/northbridge/intel/i82830/northbridge.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2012-07-18 14:38:54 +0300
committerAnton Kochkov <anton.kochkov@gmail.com>2012-08-01 11:53:27 +0200
commit5e29f00c5598942b3f57813f90fbbb73f82e969b (patch)
tree7d7e0021a6d9062a9cff60c92837cc5d9ba8fc7a /src/northbridge/intel/i82830/northbridge.c
parent7f189cc74eb0358149f892c32a9bfa7b831c83a3 (diff)
downloadcoreboot-5e29f00c5598942b3f57813f90fbbb73f82e969b.tar.xz
Intel and GFXUMA: drop redundant use of lb_add_memory_range()
Use of uma_resource() in northbridge code created a memory resource marked as reserved. Such resources are removed from system memory in write_coreboot_table(). Change-Id: I14bfd560140d8d30ec156562f23072bfae747bde Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/1238 Tested-by: build bot (Jenkins) Reviewed-by: Anton Kochkov <anton.kochkov@gmail.com>
Diffstat (limited to 'src/northbridge/intel/i82830/northbridge.c')
-rw-r--r--src/northbridge/intel/i82830/northbridge.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/northbridge/intel/i82830/northbridge.c b/src/northbridge/intel/i82830/northbridge.c
index 649a203aca..4951c4f617 100644
--- a/src/northbridge/intel/i82830/northbridge.c
+++ b/src/northbridge/intel/i82830/northbridge.c
@@ -52,15 +52,6 @@ static const struct pci_driver northbridge_driver __pci_driver = {
.device = 0x3575,
};
-int add_northbridge_resources(struct lb_memory *mem)
-{
- printk(BIOS_DEBUG, "Adding IGD UMA memory area\n");
- lb_add_memory_range(mem, LB_MEM_RESERVED,
- uma_memory_base, uma_memory_size);
-
- return 0;
-}
-
#if CONFIG_WRITE_HIGH_TABLES
#include <cbmem.h>
#endif