diff options
author | Vignesh Raghavendra <vigneshr@ti.com> | 2019-11-18 19:16:33 +0530 |
---|---|---|
committer | Marek Vasut <marek.vasut+renesas@gmail.com> | 2019-11-19 16:07:14 +0100 |
commit | e5521b1c6f4e2d18f7b33e6db06af5e47fdef52c (patch) | |
tree | 41d3d4ee1d8a060a284f26dd20f60bf1a68160e9 /drivers/usb | |
parent | d4a31e8ee5592072d8d5208b3e950cba2d89b6bd (diff) | |
download | u-boot-e5521b1c6f4e2d18f7b33e6db06af5e47fdef52c.tar.gz |
usb: cdns3: Fix include file path
xhci.h has now been moved to include/usb/ directory. Therefore, update the
path in the Cadence USB drivers.
Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/cdns3/core.c | 2 | ||||
-rw-r--r-- | drivers/usb/cdns3/host.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/cdns3/core.c b/drivers/usb/cdns3/core.c index f1e4bb6278..8c8e02169e 100644 --- a/drivers/usb/cdns3/core.c +++ b/drivers/usb/cdns3/core.c @@ -18,7 +18,7 @@ #include <linux/kernel.h> #include <linux/io.h> #include <usb.h> -#include "../host/xhci.h" +#include <usb/xhci.h> #include "core.h" #include "host-export.h" diff --git a/drivers/usb/cdns3/host.c b/drivers/usb/cdns3/host.c index 79be63001d..425d9d053d 100644 --- a/drivers/usb/cdns3/host.c +++ b/drivers/usb/cdns3/host.c @@ -11,7 +11,7 @@ #include <dm.h> #include <linux/compat.h> #include <usb.h> -#include "../host/xhci.h" +#include <usb/xhci.h> #include "core.h" #include "drd.h" |