diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-03-09 19:56:59 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-03-11 14:36:45 +0000 |
commit | 0965044c99162b27e8c7ca01e4e14ccecd882c1b (patch) | |
tree | 7e9aa3d856765c554ceff4d6fc461ac8db65d768 | |
parent | 04e0712f46d15e22d640badc7cb96582c3a3fc27 (diff) | |
download | coreboot-0965044c99162b27e8c7ca01e4e14ccecd882c1b.tar.xz |
commonlib/cbfs.c: Remove unused macro
Change-Id: I330de4357fa48ee3d76a97a682b389ef42e7a135
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/39410
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
-rw-r--r-- | src/commonlib/cbfs.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/commonlib/cbfs.c b/src/commonlib/cbfs.c index be0de9f6aa..b03a3dcd3a 100644 --- a/src/commonlib/cbfs.c +++ b/src/commonlib/cbfs.c @@ -18,9 +18,6 @@ #include <string.h> #include <vb2_sha.h> -#if !defined(ERROR) -#define ERROR(x...) printk(BIOS_ERR, "CBFS: " x) -#endif #if !defined(LOG) #define LOG(x...) printk(BIOS_INFO, "CBFS: " x) #endif |