diff mbox

[v2,1/1] omap: usb: host: remove deprecated flags and structures

Message ID 1363257673-24136-2-git-send-email-ruslan.bilovol@ti.com (mailing list archive)
State New, archived
Headers show

Commit Message

Ruslan Bilovol March 14, 2013, 10:41 a.m. UTC
These flags and structures are deprecated and there is
no anymore users of them, so it's safe to remove them.

Signed-off-by: Ruslan Bilovol <ruslan.bilovol@ti.com>
---
 include/linux/platform_data/usb-omap.h |   20 --------------------
 1 file changed, 20 deletions(-)

Comments

Felipe Balbi March 14, 2013, 1:27 p.m. UTC | #1
On Thu, Mar 14, 2013 at 12:41:13PM +0200, Ruslan Bilovol wrote:
> These flags and structures are deprecated and there is
> no anymore users of them, so it's safe to remove them.
> 
> Signed-off-by: Ruslan Bilovol <ruslan.bilovol@ti.com>

Acked-by: Felipe Balbi <balbi@ti.com>
Roger Quadros March 14, 2013, 3:50 p.m. UTC | #2
On 03/14/2013 12:41 PM, Ruslan Bilovol wrote:
> These flags and structures are deprecated and there is
> no anymore users of them, so it's safe to remove them.
> 
> Signed-off-by: Ruslan Bilovol <ruslan.bilovol@ti.com>

Acked-by: Roger Quadros <rogerq@ti.com>

Tony,

Do you prefer to take this directly or want me to queue it up for you?

cheers,
-roger

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/include/linux/platform_data/usb-omap.h b/include/linux/platform_data/usb-omap.h
index fa579b4..4c7acbe 100644
--- a/include/linux/platform_data/usb-omap.h
+++ b/include/linux/platform_data/usb-omap.h
@@ -38,34 +38,14 @@  enum usbhs_omap_port_mode {
 	OMAP_OHCI_PORT_MODE_TLL_2PIN_DPDM
 };
 
-struct usbtll_omap_platform_data {
-	enum usbhs_omap_port_mode		port_mode[OMAP3_HS_USB_PORTS];
-};
-
-struct ehci_hcd_omap_platform_data {
-	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];
-	unsigned			phy_reset:1;
-};
-
-struct ohci_hcd_omap_platform_data {
-	enum usbhs_omap_port_mode	port_mode[OMAP3_HS_USB_PORTS];
-	unsigned			es2_compatibility:1;
-};
-
 struct usbhs_omap_platform_data {
 	int				nports;
 	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 es2_compatibility:1;
 	unsigned phy_reset:1;
 };