diff options
author | Vignesh Raghavendra <vigneshr@ti.com> | 2019-12-05 13:29:25 +0530 |
---|---|---|
committer | Marek Vasut <marek.vasut+renesas@gmail.com> | 2019-12-21 20:35:16 +0100 |
commit | bdf30e84909d8d99c2700a0fc6c3e799e3d8e2d4 (patch) | |
tree | cf773e8c17bdd3d60bb2aba6817b487df6c81c42 /drivers/usb | |
parent | 643366bcd5e32878a951e39b8b553b794695b026 (diff) | |
download | u-boot-bdf30e84909d8d99c2700a0fc6c3e799e3d8e2d4.zip u-boot-bdf30e84909d8d99c2700a0fc6c3e799e3d8e2d4.tar.gz u-boot-bdf30e84909d8d99c2700a0fc6c3e799e3d8e2d4.tar.bz2 |
usb: cdns3: ep0: Fix build warnings related to cache ops
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>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/cdns3/ep0.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/cdns3/ep0.c b/drivers/usb/cdns3/ep0.c index 1903f61..0b6d9cf 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> |