diff options
| author | BALATON Zoltan <balaton@eik.bme.hu> | 2018-11-28 20:27:06 +0100 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2018-12-12 10:01:13 +0100 |
| commit | 2b4c1125ac3db2734222ff43c25388a16aca4a99 (patch) | |
| tree | 3573c70a6dc5a351c91da4f3c83a4c414029a139 /include/hw/i2c/ppc4xx_i2c.h | |
| parent | 78751ea855f89b5a352ccc332162fed3ad4c9496 (diff) | |
| download | focaccia-qemu-2b4c1125ac3db2734222ff43c25388a16aca4a99.tar.gz focaccia-qemu-2b4c1125ac3db2734222ff43c25388a16aca4a99.zip | |
i2c: Move typedef of bitbang_i2c_interface to i2c.h
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>
Diffstat (limited to 'include/hw/i2c/ppc4xx_i2c.h')
| -rw-r--r-- | include/hw/i2c/ppc4xx_i2c.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/hw/i2c/ppc4xx_i2c.h b/include/hw/i2c/ppc4xx_i2c.h index 0891a9c948..b3450bacf7 100644 --- a/include/hw/i2c/ppc4xx_i2c.h +++ b/include/hw/i2c/ppc4xx_i2c.h @@ -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) |