david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[thunderx] Fix compilation with older versions of gcc

Remove redundant duplicate typedef which causes a build failure on
older gcc versions.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown 2016-06-22 12:04:50 +01:00
parent 632e57f0f3
commit 0418631918
1 changed files with 2 additions and 2 deletions

View File

@ -203,9 +203,9 @@ EFI_STATUS
/// ///
/// Protocol structure /// Protocol structure
/// ///
typedef struct _EFI_THUNDER_CONFIG_PROTOCOL { struct _EFI_THUNDER_CONFIG_PROTOCOL {
EFI_THUNDER_CONFIG_PROTOCOL_GET_CONFIG GetConfig; EFI_THUNDER_CONFIG_PROTOCOL_GET_CONFIG GetConfig;
BOARD_CFG* BoardConfig; BOARD_CFG* BoardConfig;
} EFI_THUNDER_CONFIG_PROTOCOL; };
#endif /* _THUNDERXCFG_H */ #endif /* _THUNDERXCFG_H */