Kyösti Mälkki (kyosti.malkki@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5718
-gerrit
commit 71c3c6eb98a36ff847fb39736966529fe4f7cb33 Author: Kyösti Mälkki kyosti.malkki@gmail.com Date: Fri Oct 18 11:02:46 2013 +0300
Add guard for UMA globals
We no longer need these globally. Guard them so we get to declare static replacements at few locations until complete removal.
Change-Id: Ie33e2a680fc9bbb7e28c8fbe17e5181e626736a5 Signed-off-by: Kyösti Mälkki kyosti.malkki@gmail.com --- src/include/device/device.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/src/include/device/device.h b/src/include/device/device.h index dfebeaa..fd26c04 100644 --- a/src/include/device/device.h +++ b/src/include/device/device.h @@ -131,9 +131,11 @@ extern struct bus *free_links;
extern const char mainboard_name[];
+#if CONFIG_GFXUMA /* IGD UMA memory */ extern uint64_t uma_memory_base; extern uint64_t uma_memory_size; +#endif
/* Generic device interface functions */ device_t alloc_dev(struct bus *parent, struct device_path *path);