diff options
| author | Stefan Agner <[email protected]> | 2021-10-06 14:05:29 +0200 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2021-10-30 22:54:57 +0200 |
| commit | 617e851e3a26a1bbabbbc050f732d997628a9b61 (patch) | |
| tree | 0c0ed5aaeca922f438d51f80eae809f186fbaada | |
| parent | a09929cc6c5a108f89e91660f37d745ed119385b (diff) | |
usb: xhci-brcm: Include header file needed for dev_err
dev_err seems to be moved to different header file. Include
dm/device_compat.h file to compile properly.
Fixes: 69dae8902b16 ("linux/compat.h: Remove redefinition of dev_xxx macros")
Signed-off-by: Stefan Agner <[email protected]>
| -rw-r--r-- | drivers/usb/host/xhci-brcm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/host/xhci-brcm.c b/drivers/usb/host/xhci-brcm.c index 27c4bbfcba7..fe17924028c 100644 --- a/drivers/usb/host/xhci-brcm.c +++ b/drivers/usb/host/xhci-brcm.c @@ -8,6 +8,7 @@ #include <fdtdec.h> #include <usb.h> #include <asm/io.h> +#include <dm/device_compat.h> #include <usb/xhci.h> #define DRD2U3H_XHC_REGS_AXIWRA 0xC08 |
