From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Mon, 20 Jun 2016 15:58:05 +0200 Subject: [U-Boot] [PATCH V2 1/2] ehci: mx7: fix usbnc_regs In-Reply-To: <1466386989-1366-1-git-send-email-peng.fan@nxp.com> References: <1466386989-1366-1-git-send-email-peng.fan@nxp.com> Message-ID: <5767F66D.9000305@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 06/20/2016 03:43 AM, Peng Fan wrote: > 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 > --- Applied, thanks > V2: > Split from V1 to a single patch. > > drivers/usb/host/ehci-mx6.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/usb/host/ehci-mx6.c b/drivers/usb/host/ehci-mx6.c > index bb48d0d..cc3b11c 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; > -- Best regards, Marek Vasut