diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-10-17 20:11:59 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-10-24 14:29:08 +0200 |
commit | 1e4b4348753ba555ea93470ea8af821425d9c826 (patch) | |
tree | 2ebe088292cdc9173e53014b51830e162823ff72 /drivers/usb/host | |
parent | ed19ece135a6908244e22e4ab395165999a4d3ab (diff) | |
download | linux-stable-1e4b4348753ba555ea93470ea8af821425d9c826.tar.gz linux-stable-1e4b4348753ba555ea93470ea8af821425d9c826.tar.bz2 linux-stable-1e4b4348753ba555ea93470ea8af821425d9c826.zip |
usb: ehci-platform: increase EHCI_MAX_RSTS to 4
Socionext LD11 SoC (arch/arm64/boot/dts/socionext/uniphier-ld11.dtsi)
needs to handle 4 reset lines for EHCI.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r-- | drivers/usb/host/ehci-platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-platform.c b/drivers/usb/host/ehci-platform.c index 876dca4fc216..a268d9e8d6cf 100644 --- a/drivers/usb/host/ehci-platform.c +++ b/drivers/usb/host/ehci-platform.c @@ -39,7 +39,7 @@ #define DRIVER_DESC "EHCI generic platform driver" #define EHCI_MAX_CLKS 4 -#define EHCI_MAX_RSTS 3 +#define EHCI_MAX_RSTS 4 #define hcd_to_ehci_priv(h) ((struct ehci_platform_priv *)hcd_to_ehci(h)->priv) struct ehci_platform_priv { |