summaryrefslogtreecommitdiffstats
path: root/drivers/usb/musb
diff options
context:
space:
mode:
authorJohan Hovold2018-05-21 15:42:20 +0200
committerGreg Kroah-Hartman2018-05-22 12:03:25 +0200
commit49484abd93ab259d5acb1ebf77d3041fe06abbdd (patch)
tree2765601b73b71dc5062992b68547971362988c38 /drivers/usb/musb
parentusb: musb: disable otg protocol support (diff)
downloadkernel-qcow2-linux-49484abd93ab259d5acb1ebf77d3041fe06abbdd.tar.gz
kernel-qcow2-linux-49484abd93ab259d5acb1ebf77d3041fe06abbdd.tar.xz
kernel-qcow2-linux-49484abd93ab259d5acb1ebf77d3041fe06abbdd.zip
USB: musb: dsps: propagate device-tree node
To be able to use DSPS-based controllers with device-tree descriptions of the USB topology, we need to associate the glue device's device-tree node with the child controller device. Note that this can also be used to eventually let USB core manage generic phys. Also note that the other glue drivers will require similar changes to be able to describe their buses in DT. Signed-off-by: Johan Hovold <johan@kernel.org> Signed-off-by: Bin Liu <b-liu@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/musb')
-rw-r--r--drivers/usb/musb/musb_dsps.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/musb/musb_dsps.c b/drivers/usb/musb/musb_dsps.c
index 34e4dda1d6ac..cfe6bfcbeb5d 100644
--- a/drivers/usb/musb/musb_dsps.c
+++ b/drivers/usb/musb/musb_dsps.c
@@ -765,6 +765,7 @@ static int dsps_create_musb_pdev(struct dsps_glue *glue,
musb->dev.parent = dev;
musb->dev.dma_mask = &musb_dmamask;
musb->dev.coherent_dma_mask = musb_dmamask;
+ device_set_of_node_from_dev(&musb->dev, &parent->dev);
glue->musb = musb;