soc/intel/skl: Rename me_hfs union into me_hfsts
Rename below union tags for consistency: me_hfs2 -> me_hfsts2 me_hfs3 -> me_hfsts3 me_hfs6 -> me_hfsts6 TEST=Verified on Soraka Change-Id: Ibb53e6a5f2b95021f86b3e42e100b711b7d6e64e Signed-off-by: Sridhar Siricilla <sridhar.siricilla@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/38797 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com>
This commit is contained in:
committed by
Patrick Georgi
parent
b143e677ee
commit
75909184fe
@@ -147,7 +147,7 @@ union me_hfsts1 {
|
|||||||
} __packed fields;
|
} __packed fields;
|
||||||
};
|
};
|
||||||
|
|
||||||
union me_hfs2 {
|
union me_hfsts2 {
|
||||||
u32 data;
|
u32 data;
|
||||||
struct {
|
struct {
|
||||||
u32 reserved1: 3;
|
u32 reserved1: 3;
|
||||||
@@ -168,7 +168,7 @@ union me_hfs2 {
|
|||||||
} __packed fields;
|
} __packed fields;
|
||||||
};
|
};
|
||||||
|
|
||||||
union me_hfs3 {
|
union me_hfsts3 {
|
||||||
u32 data;
|
u32 data;
|
||||||
struct {
|
struct {
|
||||||
u32 reserved1: 4;
|
u32 reserved1: 4;
|
||||||
@@ -184,7 +184,7 @@ union me_hfs3 {
|
|||||||
#define ME_HFS6_FPF_NOT_COMMITTED 0x0
|
#define ME_HFS6_FPF_NOT_COMMITTED 0x0
|
||||||
#define ME_HFS6_FPF_ERROR 0x2
|
#define ME_HFS6_FPF_ERROR 0x2
|
||||||
|
|
||||||
union me_hfs6 {
|
union me_hfsts6 {
|
||||||
u32 data;
|
u32 data;
|
||||||
struct {
|
struct {
|
||||||
u32 reserved1: 30;
|
u32 reserved1: 30;
|
||||||
|
@@ -273,9 +273,9 @@ BOOT_STATE_INIT_ENTRY(BS_DEV_ENABLE, BS_ON_EXIT, print_me_version, NULL);
|
|||||||
void intel_me_status(void)
|
void intel_me_status(void)
|
||||||
{
|
{
|
||||||
union me_hfsts1 hfs1;
|
union me_hfsts1 hfs1;
|
||||||
union me_hfs2 hfs2;
|
union me_hfsts2 hfs2;
|
||||||
union me_hfs3 hfs3;
|
union me_hfsts3 hfs3;
|
||||||
union me_hfs6 hfs6;
|
union me_hfsts6 hfs6;
|
||||||
|
|
||||||
if (!is_cse_enabled())
|
if (!is_cse_enabled())
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user