diff options
author | Mateusz Kulikowski <mateusz.kulikowski@gmail.com> | 2016-03-31 23:12:23 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-04-01 17:18:10 -0400 |
commit | e162c6b1a758c6bda26417c1075fef7a97fb6743 (patch) | |
tree | c444f101b6f68b12362f5a957a740fcd0244d0a3 /include/usb | |
parent | 64160a545d79aefc8b17590532332836ff409883 (diff) | |
download | u-boot-imx-e162c6b1a758c6bda26417c1075fef7a97fb6743.zip u-boot-imx-e162c6b1a758c6bda26417c1075fef7a97fb6743.tar.gz u-boot-imx-e162c6b1a758c6bda26417c1075fef7a97fb6743.tar.bz2 |
usb: Rename ehci-fsl.h to ehci-ci.h
Most of ehci-fsl header describe USB controller
designed by Chipidea and used by various SoC vendors.
This patch renames it to a generic header: ehci-ci.h
Contents of file are not changed (so it contains several
references to freescale SoCs).
Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
Acked-by: Marek Vasut <marex@denx.de>
Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/usb')
-rw-r--r-- | include/usb/ehci-ci.h (renamed from include/usb/ehci-fsl.h) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/usb/ehci-fsl.h b/include/usb/ehci-ci.h index e9349b5..725aec5 100644 --- a/include/usb/ehci-fsl.h +++ b/include/usb/ehci-ci.h @@ -6,8 +6,8 @@ * SPDX-License-Identifier: GPL-2.0+ */ -#ifndef _EHCI_FSL_H -#define _EHCI_FSL_H +#ifndef _EHCI_CI_H +#define _EHCI_CI_H #include <asm/processor.h> @@ -285,4 +285,4 @@ int usb_phy_mode(int port); int board_ehci_hcd_init(int port); int board_usb_phy_mode(int port); -#endif /* _EHCI_FSL_H */ +#endif /* _EHCI_CI_H */ |