diff mbox series

usb: cdns3: ep0: Fix build warnings related to cache ops

Message ID 20191205075925.7614-1-vigneshr@ti.com
State Accepted
Commit bdf30e84909d8d99c2700a0fc6c3e799e3d8e2d4
Delegated to: Marek Vasut
Headers show
Series usb: cdns3: ep0: Fix build warnings related to cache ops | expand

Commit Message

Raghavendra, Vignesh Dec. 5, 2019, 7:59 a.m. UTC
Since, commit 62f9b6544728 ("common: Move older CPU functions to their own header")
cache ops functions are declared in a separate header. Include the same
to avoid build warnings.

Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
---
 drivers/usb/cdns3/ep0.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Marek Vasut Dec. 5, 2019, 1:26 p.m. UTC | #1
On 12/5/19 8:59 AM, Vignesh Raghavendra wrote:
> Since, commit 62f9b6544728 ("common: Move older CPU functions to their own header")
> cache ops functions are declared in a separate header. Include the same
> to avoid build warnings.

Applied, thanks.
diff mbox series

Patch

diff --git a/drivers/usb/cdns3/ep0.c b/drivers/usb/cdns3/ep0.c
index 1903f6110388..0b6d9cf7274e 100644
--- a/drivers/usb/cdns3/ep0.c
+++ b/drivers/usb/cdns3/ep0.c
@@ -10,6 +10,7 @@ 
  *          Peter Chen <peter.chen@nxp.com>
  */
 
+#include <cpu_func.h>
 #include <linux/usb/composite.h>
 #include <linux/iopoll.h>