From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sean Anderson Date: Sun, 4 Oct 2020 21:39:53 -0400 Subject: [PATCH 12/16] usb: xhci: Include device_compat.h In-Reply-To: <20201005013958.498888-1-seanga2@gmail.com> References: <20201005013958.498888-1-seanga2@gmail.com> Message-ID: <20201005013958.498888-13-seanga2@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de This header is necessary for the dev_xxx macros. Signed-off-by: Sean Anderson --- drivers/usb/host/xhci-mtk.c | 5 +++-- drivers/usb/host/xhci.c | 7 ++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/drivers/usb/host/xhci-mtk.c b/drivers/usb/host/xhci-mtk.c index f3f181dae0..f62e232d21 100644 --- a/drivers/usb/host/xhci-mtk.c +++ b/drivers/usb/host/xhci-mtk.c @@ -7,15 +7,16 @@ #include #include #include +#include #include #include #include +#include #include +#include #include #include -#include #include -#include /* IPPC (IP Port Control) registers */ #define IPPC_IP_PW_CTRL0 0x00 diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c index 3547a9bad1..7080f8fabe 100644 --- a/drivers/usb/host/xhci.c +++ b/drivers/usb/host/xhci.c @@ -22,11 +22,13 @@ #include #include #include +#include #include -#include -#include #include +#include +#include #include +#include #include #include #include @@ -34,7 +36,6 @@ #include #include #include -#include #ifndef CONFIG_USB_MAX_CONTROLLER_COUNT #define CONFIG_USB_MAX_CONTROLLER_COUNT 1 -- 2.28.0