UPSTREAM: usb: xhci: move xhci.h to include usb
The xhci.h header file is currently located under drivers/usb/xhci Move it to the include/usb folder to make it available to drivers that are not under drivers/usb/xhci Change-Id: I13705562893b30327708fbc321547bac79615785 Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com> Signed-off-by: Frank Wang <frank.wang@rock-chips.com> (cherry picked from commit 1708a12377b98397606677e117f93f07d7cd2f7e)
This commit is contained in:
parent
2f6edaae3c
commit
143fc13bc1
|
@ -544,6 +544,7 @@ M: Bin Meng <bmeng.cn@gmail.com>
|
|||
S: Maintained
|
||||
T: git git://git.denx.de/u-boot-usb.git topic-xhci
|
||||
F: drivers/usb/host/xhci*
|
||||
F: include/usb/xhci.h
|
||||
|
||||
VIDEO
|
||||
M: Anatolij Gustschin <agust@denx.de>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#include <usb.h>
|
||||
#include <dwc3-uboot.h>
|
||||
|
||||
#include "xhci.h"
|
||||
#include <usb/xhci.h>
|
||||
#include <asm/io.h>
|
||||
#include <linux/usb/dwc3.h>
|
||||
#include <linux/usb/otg.h>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <linux/compat.h>
|
||||
#include <linux/usb/dwc3.h>
|
||||
|
||||
#include "xhci.h"
|
||||
#include <usb/xhci.h>
|
||||
|
||||
/* Declare global data pointer */
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include <linux/compat.h>
|
||||
#include <linux/usb/xhci-fsl.h>
|
||||
#include <linux/usb/dwc3.h>
|
||||
#include "xhci.h"
|
||||
#include <usb/xhci.h>
|
||||
#include <fsl_errata.h>
|
||||
#include <fsl_usb.h>
|
||||
#include <dm.h>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include <asm/cache.h>
|
||||
#include <linux/errno.h>
|
||||
|
||||
#include "xhci.h"
|
||||
#include <usb/xhci.h>
|
||||
|
||||
#define CACHELINE_SIZE CONFIG_SYS_CACHELINE_SIZE
|
||||
/**
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include <power/regulator.h>
|
||||
#include <asm/gpio.h>
|
||||
|
||||
#include "xhci.h"
|
||||
#include <usb/xhci.h>
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#include <linux/usb/dwc3.h>
|
||||
#include <linux/usb/xhci-omap.h>
|
||||
|
||||
#include "xhci.h"
|
||||
#include <usb/xhci.h>
|
||||
|
||||
/* Declare global data pointer */
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include <dm.h>
|
||||
#include <pci.h>
|
||||
#include <usb.h>
|
||||
#include "xhci.h"
|
||||
#include <usb/xhci.h>
|
||||
|
||||
static void xhci_pci_init(struct udevice *dev, struct xhci_hccr **ret_hccr,
|
||||
struct xhci_hcor **ret_hcor)
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include <usb.h>
|
||||
#include <wait_bit.h>
|
||||
|
||||
#include "xhci.h"
|
||||
#include <usb/xhci.h>
|
||||
#include "xhci-rcar-r8a779x_usb3_v3.h"
|
||||
|
||||
/* Register Offset */
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#include <asm/unaligned.h>
|
||||
#include <linux/errno.h>
|
||||
|
||||
#include "xhci.h"
|
||||
#include <usb/xhci.h>
|
||||
|
||||
/**
|
||||
* Is this TRB a link TRB or was the last TRB the last TRB in this event ring
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include <linux/usb/dwc3.h>
|
||||
#include <power/regulator.h>
|
||||
|
||||
#include "xhci.h"
|
||||
#include <usb/xhci.h>
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include <asm/cache.h>
|
||||
#include <asm/unaligned.h>
|
||||
#include <linux/errno.h>
|
||||
#include "xhci.h"
|
||||
#include <usb/xhci.h>
|
||||
|
||||
#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
|
||||
#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#include <linux/usb/dwc3.h>
|
||||
#include <linux/usb/xhci-omap.h>
|
||||
|
||||
#include "../host/xhci.h"
|
||||
#include <usb/xhci.h>
|
||||
|
||||
#ifdef CONFIG_OMAP_USB3PHY1_HOST
|
||||
struct usb3_dpll_params {
|
||||
|
|
Loading…
Reference in New Issue