Fix building with GCC 4.9
It doesn't like empty initializers.
Change-Id: If2988e60401155f87ee3369c77f00ccf9332012c
Signed-off-by: Evgeny Zinoviev <me@ch1p.io>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/36629
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
diff --git a/it8212.c b/it8212.c
index 70b1d9d..ac53a6f 100644
--- a/it8212.c
+++ b/it8212.c
@@ -26,7 +26,7 @@
const struct dev_entry devs_it8212[] = {
{PCI_VENDOR_ID_ITE, 0x8212, NT, "ITE", "8212F PATA RAID"},
- {},
+ {0},
};
#define IT8212_MEMMAP_SIZE (128 * 1024)