diff options
author | Matthias Schiffer <matthias.schiffer@ew.tq-group.com> | 2021-09-20 15:37:24 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2021-09-22 21:29:56 +0200 |
commit | 8709228b5c61d56c21461a797b12e275bdd3c044 (patch) | |
tree | 298f27a8dfe6dfe7962ebd0a8c8cd879eb19f47e | |
parent | f2a4c890e390eb0e5d131a027a259801e8f07ff3 (diff) | |
download | u-boot-8709228b5c61d56c21461a797b12e275bdd3c044.tar.gz |
usb: ehci-ci: remove redundant PORTSC flag definitions
These definitions are unused, all boards that define portsc flags use
the equivalent PORT_* definitions instead.
Signed-off-by: Markus Niebel <Markus.Niebel@ew.tq-group.com>
Signed-off-by: Matthias Schiffer <matthias.schiffer@ew.tq-group.com>
-rw-r--r-- | include/usb/ehci-ci.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/usb/ehci-ci.h b/include/usb/ehci-ci.h index efb2eec5ce..bf5d26faa5 100644 --- a/include/usb/ehci-ci.h +++ b/include/usb/ehci-ci.h @@ -249,17 +249,6 @@ struct usb_ehci { * For MXC SOCs */ -/* values for portsc field */ -#define MXC_EHCI_PHY_LOW_POWER_SUSPEND (1 << 23) -#define MXC_EHCI_FORCE_FS (1 << 24) -#define MXC_EHCI_UTMI_8BIT (0 << 28) -#define MXC_EHCI_UTMI_16BIT (1 << 28) -#define MXC_EHCI_SERIAL (1 << 29) -#define MXC_EHCI_MODE_UTMI (0 << 30) -#define MXC_EHCI_MODE_PHILIPS (1 << 30) -#define MXC_EHCI_MODE_ULPI (2 << 30) -#define MXC_EHCI_MODE_SERIAL (3 << 30) - /* values for flags field */ #define MXC_EHCI_INTERFACE_DIFF_UNI (0 << 0) #define MXC_EHCI_INTERFACE_DIFF_BI (1 << 0) |