Kyösti Mälkki has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/55478 )
Change subject: device: Drop LOG_MEM/IO_RESOURCE ......................................................................
device: Drop LOG_MEM/IO_RESOURCE
The only callsites in intel/xeon_sp were replaced with calls to log_resource() and functionality is provided with LOG_RESOURCE() now.
Change-Id: Ie44694f7a0b119d10f1bef9158fa30e71c312a55 Signed-off-by: Kyösti Mälkki kyosti.malkki@gmail.com --- M src/include/device/device.h 1 file changed, 0 insertions(+), 17 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/78/55478/1
diff --git a/src/include/device/device.h b/src/include/device/device.h index 218c9e9..78ae066 100644 --- a/src/include/device/device.h +++ b/src/include/device/device.h @@ -256,23 +256,6 @@ void show_all_devs_resources(int debug_level, const char *msg);
/* Debug macros */ -#if CONFIG(DEBUG_RESOURCES) -#include <console/console.h> -#define LOG_MEM_RESOURCE(type, dev, index, base_kb, size_kb) \ - printk(BIOS_SPEW, "%s:%d res: %s, dev: %s, index: 0x%x, base: 0x%llx, " \ - "end: 0x%llx, size_kb: 0x%llx\n", \ - __func__, __LINE__, type, dev_path(dev), index, (base_kb << 10), \ - (base_kb << 10) + (size_kb << 10) - 1, size_kb) - -#define LOG_IO_RESOURCE(type, dev, index, base, size) \ - printk(BIOS_SPEW, "%s:%d res: %s, dev: %s, index: 0x%x, base: 0x%llx, " \ - "end: 0x%llx, size: 0x%llx\n", \ - __func__, __LINE__, type, dev_path(dev), index, base, base + size - 1, size) -#else /* DEBUG_RESOURCES*/ -#define LOG_MEM_RESOURCE(type, dev, index, base_kb, size_kb) -#define LOG_IO_RESOURCE(type, dev, index, base, size) -#endif /* DEBUG_RESOURCES*/ - #if CONFIG(DEBUG_FUNC) #include <console/console.h> #define DEV_FUNC_ENTER(dev) \