From 14fdf91ebfce7b8dd98177e873a7245f1bc21125 Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Sat, 22 Dec 2018 01:55:50 -0800 Subject: 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 Reviewed-by: Simon Glass --- include/cbfs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/cbfs.h b/include/cbfs.h index 1b88ec04ae5..dd4b574869e 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 { -- cgit v1.3.1