diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/i2c-omap.h | 2 | ||||
| -rw-r--r-- | include/linux/i2c/i2c-sh_mobile.h | 1 | ||||
| -rw-r--r-- | include/linux/platform_data/i2c-cbus-gpio.h | 27 | 
3 files changed, 28 insertions, 2 deletions
diff --git a/include/linux/i2c-omap.h b/include/linux/i2c-omap.h index 92a0dc75bc7..babe0cf6d56 100644 --- a/include/linux/i2c-omap.h +++ b/include/linux/i2c-omap.h @@ -20,8 +20,6 @@  #define OMAP_I2C_FLAG_NO_FIFO			BIT(0)  #define OMAP_I2C_FLAG_SIMPLE_CLOCK		BIT(1)  #define OMAP_I2C_FLAG_16BIT_DATA_REG		BIT(2) -#define OMAP_I2C_FLAG_RESET_REGS_POSTIDLE	BIT(3) -#define OMAP_I2C_FLAG_APPLY_ERRATA_I207	BIT(4)  #define OMAP_I2C_FLAG_ALWAYS_ARMXOR_CLK	BIT(5)  #define OMAP_I2C_FLAG_FORCE_19200_INT_CLK	BIT(6)  /* how the CPU address bus must be translated for I2C unit access */ diff --git a/include/linux/i2c/i2c-sh_mobile.h b/include/linux/i2c/i2c-sh_mobile.h index beda7081aea..06e3089795f 100644 --- a/include/linux/i2c/i2c-sh_mobile.h +++ b/include/linux/i2c/i2c-sh_mobile.h @@ -5,6 +5,7 @@  struct i2c_sh_mobile_platform_data {  	unsigned long bus_speed; +	unsigned int clks_per_count;  };  #endif /* __I2C_SH_MOBILE_H__ */ diff --git a/include/linux/platform_data/i2c-cbus-gpio.h b/include/linux/platform_data/i2c-cbus-gpio.h new file mode 100644 index 00000000000..6faa992a950 --- /dev/null +++ b/include/linux/platform_data/i2c-cbus-gpio.h @@ -0,0 +1,27 @@ +/* + * i2c-cbus-gpio.h - CBUS I2C platform_data definition + * + * Copyright (C) 2004-2009 Nokia Corporation + * + * Written by Felipe Balbi and Aaro Koskinen. + * + * This file is subject to the terms and conditions of the GNU General + * Public License. See the file "COPYING" in the main directory of this + * archive for more details. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +#ifndef __INCLUDE_LINUX_I2C_CBUS_GPIO_H +#define __INCLUDE_LINUX_I2C_CBUS_GPIO_H + +struct i2c_cbus_platform_data { +	int dat_gpio; +	int clk_gpio; +	int sel_gpio; +}; + +#endif /* __INCLUDE_LINUX_I2C_CBUS_GPIO_H */  |