[coreboot-gerrit] Patch set updated for coreboot: 17a2ede Add guard for UMA globals

Kyösti Mälkki (kyosti.malkki@gmail.com) gerrit at coreboot.org
Sat May 17 21:37:03 CEST 2014


Kyösti Mälkki (kyosti.malkki at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5718

-gerrit

commit 17a2ede08432e61bae424004faf0effccafabb54
Author: Kyösti Mälkki <kyosti.malkki at 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 at 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 0ae4f88..a4ef456 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);



More information about the coreboot-gerrit mailing list