mirror of https://github.com/ipxe/ipxe.git
[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>pull/56/head
parent
632e57f0f3
commit
0418631918
|
@ -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 */
|
||||||
|
|
Loading…
Reference in New Issue