mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
usb: ehci: mxs: Fix the USB node pointer retrieval
Use dev_ofnode() to retrieve the USB node pointer from the udevice structure. This fixes the following build error: drivers/usb/host/ehci-mxs.c:143:38: error: 'struct udevice' has no member named 'node_' Signed-off-by: Fabio Estevam <festevam@denx.de> Reviewed-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
7dede4033b
commit
2bcfae22d9
1 changed files with 4 additions and 3 deletions
|
@ -136,11 +136,12 @@ static int ehci_usb_ofdata_to_platdata(struct udevice *dev)
|
|||
struct usb_plat *plat = dev_get_plat(dev);
|
||||
struct ehci_mxs_port *port = &priv->port;
|
||||
u32 phandle, phy_reg, clk_reg, clk_id;
|
||||
ofnode np = dev_ofnode(dev);
|
||||
ofnode phy_node, clk_node;
|
||||
const char *mode;
|
||||
int ret;
|
||||
|
||||
mode = ofnode_read_string(dev->node_, "dr_mode");
|
||||
mode = ofnode_read_string(np, "dr_mode");
|
||||
if (mode) {
|
||||
if (strcmp(mode, "peripheral") == 0)
|
||||
plat->init_type = USB_INIT_DEVICE;
|
||||
|
@ -151,12 +152,12 @@ static int ehci_usb_ofdata_to_platdata(struct udevice *dev)
|
|||
}
|
||||
|
||||
/* Read base address of the USB IP block */
|
||||
ret = ofnode_read_u32(dev->node_, "reg", &port->usb_regs);
|
||||
ret = ofnode_read_u32(np, "reg", &port->usb_regs);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
/* Read base address of the USB PHY IP block */
|
||||
ret = ofnode_read_u32(dev->node_, "fsl,usbphy", &phandle);
|
||||
ret = ofnode_read_u32(np, "fsl,usbphy", &phandle);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
|
|
Loading…
Reference in a new issue