From: Peng Fan Date: Mon, 20 Jun 2016 01:43:08 +0000 (+0800) Subject: ehci: mx7: fix usbnc_regs X-Git-Tag: v2016.07~17^2~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=429ff4473b8b1a98c528608a127de833ece0496a;p=u-boot ehci: mx7: fix usbnc_regs There is a 4 bytes hole between phy_cfg2 and phy_status, fix the usbnc_regs structure to include the hole. Signed-off-by: Ye Li Signed-off-by: Peng Fan --- diff --git a/drivers/usb/host/ehci-mx6.c b/drivers/usb/host/ehci-mx6.c index bb48d0dea0..cc3b11ce4e 100644 --- a/drivers/usb/host/ehci-mx6.c +++ b/drivers/usb/host/ehci-mx6.c @@ -194,8 +194,9 @@ struct usbnc_regs { u32 reserve1[10]; u32 phy_cfg1; u32 phy_cfg2; + u32 reserve2; u32 phy_status; - u32 reserve2[4]; + u32 reserve3[4]; u32 adp_cfg1; u32 adp_cfg2; u32 adp_status;