mirror of
https://github.com/mii443/qemu.git
synced 2025-08-23 07:35:47 +00:00
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 2b4c1125ac
)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
13 lines
255 B
C
13 lines
255 B
C
#ifndef BITBANG_I2C_H
|
|
#define BITBANG_I2C_H
|
|
|
|
#include "hw/i2c/i2c.h"
|
|
|
|
#define BITBANG_I2C_SDA 0
|
|
#define BITBANG_I2C_SCL 1
|
|
|
|
bitbang_i2c_interface *bitbang_i2c_init(I2CBus *bus);
|
|
int bitbang_i2c_set(bitbang_i2c_interface *i2c, int line, int level);
|
|
|
|
#endif
|