summaryrefslogtreecommitdiffstats
path: root/include/cbfs.h
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2018-12-22 01:55:50 -0800
committerBin Meng <bmeng.cn@gmail.com>2018-12-31 09:42:41 +0800
commit14fdf91ebfce7b8dd98177e873a7245f1bc21125 (patch)
tree3fe09c3b83a328230b851f673421ecdf755e1cbd /include/cbfs.h
parentd94bf13c85c2773c8782bc7d6b4ac0190b5d489d (diff)
downloadu-boot-14fdf91ebfce7b8dd98177e873a7245f1bc21125.tar.gz
u-boot-14fdf91ebfce7b8dd98177e873a7245f1bc21125.tar.xz
u-boot-14fdf91ebfce7b8dd98177e873a7245f1bc21125.zip
fs: cbfs: Make all CBFS_TYPE_xxx macros consistent
At present there are 2 macros that are named as CBFS_COMPONENT_xxx. Change them to CBFS_TYPE_xxx for consistency. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/cbfs.h')
-rw-r--r--include/cbfs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cbfs.h b/include/cbfs.h
index 1b88ec04ae..dd4b574869 100644
--- a/include/cbfs.h
+++ b/include/cbfs.h
@@ -26,8 +26,8 @@ enum cbfs_filetype {
CBFS_TYPE_VSA = 0x51,
CBFS_TYPE_MBI = 0x52,
CBFS_TYPE_MICROCODE = 0x53,
- CBFS_COMPONENT_CMOS_DEFAULT = 0xaa,
- CBFS_COMPONENT_CMOS_LAYOUT = 0x01aa
+ CBFS_TYPE_CMOS_DEFAULT = 0xaa,
+ CBFS_TYPE_CMOS_LAYOUT = 0x01aa
};
struct cbfs_header {