summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/device/device.c6
-rw-r--r--src/include/device/device.h6
2 files changed, 0 insertions, 12 deletions
diff --git a/src/device/device.c b/src/device/device.c
index aa10d6f451f9..56110225fa18 100644
--- a/src/device/device.c
+++ b/src/device/device.c
@@ -66,12 +66,6 @@ void dev_finalize_chips(void)
DECLARE_SPIN_LOCK(dev_lock)
-#if CONFIG(GFXUMA)
-/* IGD UMA memory */
-uint64_t uma_memory_base = 0;
-uint64_t uma_memory_size = 0;
-#endif
-
/**
* Allocate a new device structure.
*
diff --git a/src/include/device/device.h b/src/include/device/device.h
index 01e2c825a1ce..88b5310055f8 100644
--- a/src/include/device/device.h
+++ b/src/include/device/device.h
@@ -168,12 +168,6 @@ 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 */
struct device *alloc_dev(struct bus *parent, struct device_path *path);
void dev_initialize_chips(void);