diff options
| author | Arnd Bergmann <arnd@arndb.de> | 2013-02-19 20:54:15 +0100 | 
|---|---|---|
| committer | Arnd Bergmann <arnd@arndb.de> | 2013-02-19 20:54:25 +0100 | 
| commit | 6e7f7cfce26cabea2965a43b69b4a0c285a7e4c5 (patch) | |
| tree | db7c3d908e8b308c7c559ed4bd561c7ff86da753 /include/linux/platform_data/usb-omap.h | |
| parent | 001c5c4aaaffda840184700b8f488ced3c9dd0a1 (diff) | |
| parent | 64ff1673332a1109780d731ca08dcd4f8ad33097 (diff) | |
| download | olio-linux-3.10-6e7f7cfce26cabea2965a43b69b4a0c285a7e4c5.tar.xz olio-linux-3.10-6e7f7cfce26cabea2965a43b69b4a0c285a7e4c5.zip  | |
Merge tag 'omap-for-v3.9/usb-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into next/soc
These changes contain the OMAP USB related platform data changes
that were dropped from linux next because of the merge conflicts
as requested by me and Olof. The reason was that at this point
we really should be able to do the arch/arm related changes
separately from driver changes to avoid dependencies between
branches.
These patches were initially part of the USB related MFD patches.
Based on our comments, Roger Quadros quickly reworked these
patches into a shared branch between ARM SoC tree and the MFD
tree, then separate patches for the OMAP platform data and
MFD driver.
Note that this branch will conflict with c1d1cd597fc7
("ARM: OMAP2+: omap_device: remove obsolete pm_lats and
early_device code"). Please see http://lkml.org/lkml/2013/2/11/16
for the merge resolution.
[arnd - resolved the merge conflict]
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'include/linux/platform_data/usb-omap.h')
| -rw-r--r-- | include/linux/platform_data/usb-omap.h | 8 | 
1 files changed, 6 insertions, 2 deletions
diff --git a/include/linux/platform_data/usb-omap.h b/include/linux/platform_data/usb-omap.h index ef65b67c56c..e697c85ad3b 100644 --- a/include/linux/platform_data/usb-omap.h +++ b/include/linux/platform_data/usb-omap.h @@ -55,13 +55,17 @@ struct ohci_hcd_omap_platform_data {  };  struct usbhs_omap_platform_data { -	enum usbhs_omap_port_mode		port_mode[OMAP3_HS_USB_PORTS]; +	enum usbhs_omap_port_mode	port_mode[OMAP3_HS_USB_PORTS]; +	int				reset_gpio_port[OMAP3_HS_USB_PORTS]; +	struct regulator		*regulator[OMAP3_HS_USB_PORTS];  	struct ehci_hcd_omap_platform_data	*ehci_data;  	struct ohci_hcd_omap_platform_data	*ohci_data;  	/* OMAP3 <= ES2.1 have a single ulpi bypass control bit */ -	unsigned				single_ulpi_bypass:1; +	unsigned single_ulpi_bypass:1; +	unsigned es2_compatibility:1; +	unsigned phy_reset:1;  };  /*-------------------------------------------------------------------------*/  |