diff options
Diffstat (limited to 'include/linux/i2c')
| -rw-r--r-- | include/linux/i2c/pmbus.h | 4 | ||||
| -rw-r--r-- | include/linux/i2c/twl.h | 2 | 
2 files changed, 4 insertions, 2 deletions
diff --git a/include/linux/i2c/pmbus.h b/include/linux/i2c/pmbus.h index 69280db02c41..ee3c2aba2a8e 100644 --- a/include/linux/i2c/pmbus.h +++ b/include/linux/i2c/pmbus.h @@ -40,6 +40,10 @@  struct pmbus_platform_data {  	u32 flags;		/* Device specific flags */ + +	/* regulator support */ +	int num_regulators; +	struct regulator_init_data *reg_init_data;  };  #endif /* _PMBUS_H_ */ diff --git a/include/linux/i2c/twl.h b/include/linux/i2c/twl.h index 8cfb50f38529..0bc03f100d04 100644 --- a/include/linux/i2c/twl.h +++ b/include/linux/i2c/twl.h @@ -26,7 +26,6 @@  #define __TWL_H_  #include <linux/types.h> -#include <linux/phy/phy.h>  #include <linux/input/matrix_keypad.h>  /* @@ -634,7 +633,6 @@ enum twl4030_usb_mode {  struct twl4030_usb_data {  	enum twl4030_usb_mode	usb_mode;  	unsigned long		features; -	struct phy_init_data	*init_data;  	int		(*phy_init)(struct device *dev);  	int		(*phy_exit)(struct device *dev);  |