Skip to content

Commit

Permalink
i2c: Move typedef of bitbang_i2c_interface to i2c.h
Browse files Browse the repository at this point in the history
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 2b4c112)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
  • Loading branch information
zbalaton authored and mdroth committed Mar 28, 2019
1 parent 32a1a94 commit 08c410e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 0 additions & 2 deletions hw/i2c/bitbang_i2c.h
Expand Up @@ -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

Expand Down
2 changes: 2 additions & 0 deletions include/hw/i2c/i2c.h
Expand Up @@ -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);

Expand Down
3 changes: 0 additions & 3 deletions include/hw/i2c/ppc4xx_i2c.h
Expand Up @@ -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)

Expand Down

0 comments on commit 08c410e

Please sign in to comment.