diff options
-rw-r--r-- | src/southbridge/intel/lynxpoint/me.c | 2 | ||||
-rw-r--r-- | src/southbridge/intel/lynxpoint/me.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/southbridge/intel/lynxpoint/me.c b/src/southbridge/intel/lynxpoint/me.c index d076f0ff87..b0d98d4c2b 100644 --- a/src/southbridge/intel/lynxpoint/me.c +++ b/src/southbridge/intel/lynxpoint/me.c @@ -723,7 +723,7 @@ static u32 me_to_host_words_pending(void) struct mbp_payload { union mbp_header header; - u32 data[0]; + u32 data[]; }; /* diff --git a/src/southbridge/intel/lynxpoint/me.h b/src/southbridge/intel/lynxpoint/me.h index 6990322651..489fc6dc46 100644 --- a/src/southbridge/intel/lynxpoint/me.h +++ b/src/southbridge/intel/lynxpoint/me.h @@ -462,7 +462,7 @@ struct mbp_icc_profile { u8 icc_profile_index; u8 reserved; u32 icc_reg_bundles; - struct icc_address_mask icc_address_mask[0]; + struct icc_address_mask icc_address_mask[]; } __packed; struct tdt_state_flag { |