diff --git a/atavia.c b/atavia.c index 80bba58e2be4e98f282c3537849f1bf1a4441107..fdaaa74c21e8971a36991e897cd590951a0f9c9a 100644 --- a/atavia.c +++ b/atavia.c @@ -51,7 +51,7 @@ const struct dev_entry ata_via[] = { {PCI_VENDOR_ID_VIA, 0x3249, DEP, "VIA", "VT6421A"}, - {}, + {0}, }; static void atavia_chip_writeb(const struct flashctx *flash, uint8_t val, chipaddr addr); diff --git a/it8212.c b/it8212.c index 70b1d9d20ddb1652761eb9eb2a098d838c8be56d..ac53a6fcf8bbeaf1ee3f2f54164a06991e52d69f 100644 --- a/it8212.c +++ b/it8212.c @@ -26,7 +26,7 @@ static uint8_t *it8212_bar = NULL; const struct dev_entry devs_it8212[] = { {PCI_VENDOR_ID_ITE, 0x8212, NT, "ITE", "8212F PATA RAID"}, - {}, + {0}, }; #define IT8212_MEMMAP_SIZE (128 * 1024) diff --git a/pickit2_spi.c b/pickit2_spi.c index 784dc13775469726237e4ab6bfb0458142d4a4cc..2936ee8d8cd6b1e6ae06ae46b637f48113420e13 100644 --- a/pickit2_spi.c +++ b/pickit2_spi.c @@ -49,7 +49,7 @@ const struct dev_entry devs_pickit2_spi[] = { {0x04D8, 0x0033, OK, "Microchip", "PICkit 2"}, - {} + {0} }; static libusb_device_handle *pickit2_handle; diff --git a/usbblaster_spi.c b/usbblaster_spi.c index d6b508401c43c3fc061d9fbb5f38cdcef0d934d4..e2a0a4f2322d3676284236fea7688b7238a56fa8 100644 --- a/usbblaster_spi.c +++ b/usbblaster_spi.c @@ -48,7 +48,7 @@ const struct dev_entry devs_usbblasterspi[] = { {ALTERA_VID, ALTERA_USBBLASTER_PID, OK, "Altera", "USB-Blaster"}, - {} + {0} }; static const struct spi_master spi_master_usbblaster;