diff mbox series

[U-Boot,1/4] usb: cdns3: Fix include file path

Message ID 20191118134636.17762-2-vigneshr@ti.com
State Accepted
Commit e5521b1c6f4e2d18f7b33e6db06af5e47fdef52c
Delegated to: Marek Vasut
Headers show
Series J721e: Add USB support | expand

Commit Message

Raghavendra, Vignesh Nov. 18, 2019, 1:46 p.m. UTC
xhci.h has now been moved to include/usb/ folder. Therefore, update the
path in the Cadence USB drivers.

Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
---
 drivers/usb/cdns3/core.c | 2 +-
 drivers/usb/cdns3/host.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Comments

Marek Vasut Nov. 18, 2019, 2:12 p.m. UTC | #1
On 11/18/19 2:46 PM, Vignesh Raghavendra wrote:
> xhci.h has now been moved to include/usb/ folder. Therefore, update the

s/folder/directory/ ; I can update it while applying.

> path in the Cadence USB drivers.

[...]
Raghavendra, Vignesh Nov. 19, 2019, 5:47 a.m. UTC | #2
Hi Marek,

On 18/11/19 7:42 PM, Marek Vasut wrote:
> On 11/18/19 2:46 PM, Vignesh Raghavendra wrote:
>> xhci.h has now been moved to include/usb/ folder. Therefore, update the
> 
> s/folder/directory/ ; I can update it while applying.

Agree, Thanks!

> 
>> path in the Cadence USB drivers.
> 
> [...]
>
Marek Vasut Nov. 19, 2019, 3:07 p.m. UTC | #3
On 11/18/19 2:46 PM, Vignesh Raghavendra wrote:
> xhci.h has now been moved to include/usb/ folder. Therefore, update the
> path in the Cadence USB drivers.
> 
> Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>

Fixed and applied. thanks.
diff mbox series

Patch

diff --git a/drivers/usb/cdns3/core.c b/drivers/usb/cdns3/core.c
index f1e4bb627815..8c8e02169e81 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 79be63001d44..425d9d053ddb 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"