mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 2b4c1125ac
			
		
	
	
		2b4c1125ac
		
	
	
	
	
		
			
			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>
		
			
				
	
	
		
			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
 |