[PATCH] usb: ehci-mx6: Remove MX6Q_ARM2 related ifdefery

From: Fabio Estevam festevam@denx.de
The imx6q arm2 board support has been removed from U-Boot as it did not get converted to DM.
Remove the MX6Q_ARM2 related ifdefery in the driver.
Signed-off-by: Fabio Estevam festevam@denx.de --- drivers/usb/host/ehci-mx6.c | 5 ----- 1 file changed, 5 deletions(-)
diff --git a/drivers/usb/host/ehci-mx6.c b/drivers/usb/host/ehci-mx6.c index 060b02accc5c..e30449b55e47 100644 --- a/drivers/usb/host/ehci-mx6.c +++ b/drivers/usb/host/ehci-mx6.c @@ -272,12 +272,7 @@ static void usb_oc_config(struct usbnc_regs *usbnc, int index) { void __iomem *ctrl = (void __iomem *)(&usbnc->ctrl[index]);
-#if CONFIG_MACH_TYPE == MACH_TYPE_MX6Q_ARM2 - /* mx6qarm2 seems to required a different setting*/ - clrbits_le32(ctrl, UCTRL_OVER_CUR_POL); -#else setbits_le32(ctrl, UCTRL_OVER_CUR_POL); -#endif
setbits_le32(ctrl, UCTRL_OVER_CUR_DIS);

Hi Fabio
On Thu, May 19, 2022 at 2:14 PM Fabio Estevam festevam@gmail.com wrote:
From: Fabio Estevam festevam@denx.de
The imx6q arm2 board support has been removed from U-Boot as it did not get converted to DM.
Remove the MX6Q_ARM2 related ifdefery in the driver.
Signed-off-by: Fabio Estevam festevam@denx.de
drivers/usb/host/ehci-mx6.c | 5 ----- 1 file changed, 5 deletions(-)
diff --git a/drivers/usb/host/ehci-mx6.c b/drivers/usb/host/ehci-mx6.c index 060b02accc5c..e30449b55e47 100644 --- a/drivers/usb/host/ehci-mx6.c +++ b/drivers/usb/host/ehci-mx6.c @@ -272,12 +272,7 @@ static void usb_oc_config(struct usbnc_regs *usbnc, int index) { void __iomem *ctrl = (void __iomem *)(&usbnc->ctrl[index]);
-#if CONFIG_MACH_TYPE == MACH_TYPE_MX6Q_ARM2
/* mx6qarm2 seems to required a different setting*/
clrbits_le32(ctrl, UCTRL_OVER_CUR_POL);
-#else setbits_le32(ctrl, UCTRL_OVER_CUR_POL); -#endif
Is this supported by linux as dts property? If so can you just convert it and drop the define?
Michael
setbits_le32(ctrl, UCTRL_OVER_CUR_DIS);
-- 2.25.1
-- Michael Nazzareno Trimarchi Co-Founder & Chief Executive Officer M. +39 347 913 2170 michael@amarulasolutions.com __________________________________
Amarula Solutions BV Joop Geesinkweg 125, 1114 AB, Amsterdam, NL T. +31 (0)85 111 9172 info@amarulasolutions.com www.amarulasolutions.com

From: Fabio Estevam festevam@denx.de The imx6q arm2 board support has been removed from U-Boot as it did not get converted to DM. Remove the MX6Q_ARM2 related ifdefery in the driver. Signed-off-by: Fabio Estevam festevam@denx.de
Applied to u-boot-imx, master, thanks !
Best regards, Stefano Babic
participants (3)
-
Fabio Estevam
-
Michael Nazzareno Trimarchi
-
sbabic@denx.de