]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
i2c: Move typedef of bitbang_i2c_interface to i2c.h
authorBALATON Zoltan <balaton@eik.bme.hu>
Wed, 28 Nov 2018 19:27:06 +0000 (20:27 +0100)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Thu, 28 Mar 2019 01:03:43 +0000 (20:03 -0500)
Clang 3.4 considers duplicate typedef in ppc4xx_i2c.h and
bitbang_i2c.h an error even if they are identical. Move it to a common
place to allow building with this clang version.

Reported-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
(cherry picked from commit 2b4c1125ac3db2734222ff43c25388a16aca4a99)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
hw/i2c/bitbang_i2c.h
include/hw/i2c/i2c.h
include/hw/i2c/ppc4xx_i2c.h

index 3a7126d5dee87866b434af60b214e1250cb78297..9443021710d760939334843532499cda10c75819 100644 (file)
@@ -3,8 +3,6 @@
 
 #include "hw/i2c/i2c.h"
 
-typedef struct bitbang_i2c_interface bitbang_i2c_interface;
-
 #define BITBANG_I2C_SDA 0
 #define BITBANG_I2C_SCL 1
 
index 5dc166158b909a8ff8d038f0030bd5c62ad105ec..cf4c45a98ff240b6dc1643a964382eed98be6022 100644 (file)
@@ -82,6 +82,8 @@ int i2c_recv(I2CBus *bus);
 
 DeviceState *i2c_create_slave(I2CBus *bus, const char *name, uint8_t addr);
 
+typedef struct bitbang_i2c_interface bitbang_i2c_interface;
+
 /* lm832x.c */
 void lm832x_key_event(DeviceState *dev, int key, int state);
 
index 0891a9c94838f4bcaf62735ecb1f3fe2a937ea60..b3450bacf7fdc56f8701dbd98a9ac5f393a5b939 100644 (file)
@@ -31,9 +31,6 @@
 #include "hw/sysbus.h"
 #include "hw/i2c/i2c.h"
 
-/* from hw/i2c/bitbang_i2c.h */
-typedef struct bitbang_i2c_interface bitbang_i2c_interface;
-
 #define TYPE_PPC4xx_I2C "ppc4xx-i2c"
 #define PPC4xx_I2C(obj) OBJECT_CHECK(PPC4xxI2CState, (obj), TYPE_PPC4xx_I2C)