Hello build bot (Jenkins), Nico Huber, Patrick Georgi, Martin Roth, Angel Pons,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/47224
to look at the new patch set (#2).
Change subject: libpayload: Make OHCI enums into types ......................................................................
libpayload: Make OHCI enums into types
The OHCI header file declares various enums as follows:
enum { ... } enum_name;
Since the name is at the end, this is actually declaring a variable called enum_name and *not* a type, which is causing a multiple definition error in GCC 10. Move the enum_name before the opening brace to prevent this.
Signed-off-by: Jacob Garber jgarber1@ualberta.ca Change-Id: I452c0a1b118990942aa53f1e7e77f5e8378e8975 --- M payloads/libpayload/drivers/usb/ohci_private.h 1 file changed, 30 insertions(+), 28 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/24/47224/2