diff options
| author | Bin Meng <[email protected]> | 2018-12-22 01:55:50 -0800 |
|---|---|---|
| committer | Bin Meng <[email protected]> | 2018-12-31 09:42:41 +0800 |
| commit | 14fdf91ebfce7b8dd98177e873a7245f1bc21125 (patch) | |
| tree | 3fe09c3b83a328230b851f673421ecdf755e1cbd /include | |
| parent | d94bf13c85c2773c8782bc7d6b4ac0190b5d489d (diff) | |
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 <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/cbfs.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 { |
