summaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2019-12-21 08:52:31 +0200
committerPatrick Georgi <pgeorgi@google.com>2019-12-27 09:01:12 +0000
commit405812209d76d35a47656b31c958a38b8cd9a109 (patch)
tree038a3722be6a229878d561cd56958302f551d62b /src/arch
parent25c6d3a35ff673bc12315aec45178f8a9078578f (diff)
downloadcoreboot-405812209d76d35a47656b31c958a38b8cd9a109.tar.xz
arch/x86: Remove <arch/cbfs.h>
There are no symmetrical headerfiles for other arch/ and after ROMCC_BOOTBLOCK and walkcbfs() removal this file ended up empty. Change-Id: Ice3047630ced1f1471775411b93be6383f53e8bb Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37886 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86/include/arch/cbfs.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/arch/x86/include/arch/cbfs.h b/src/arch/x86/include/arch/cbfs.h
deleted file mode 100644
index 1e5c59bf4b..0000000000
--- a/src/arch/x86/include/arch/cbfs.h
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
-
-#ifndef __INCLUDE_ARCH_CBFS__
-#define __INCLUDE_ARCH_CBFS__
-
-#include <commonlib/cbfs_serialized.h>
-#include <endian.h>
-
-#define CBFS_SUBHEADER(_p) ((void *)((((uint8_t *)(_p)) + ntohl((_p)->offset))))
-
-#endif