diff options
author | Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> | 2015-04-02 07:22:34 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-04-03 13:03:15 -0400 |
commit | c6ab3aec4bc4beda2d6eb8ea43c6f5be3b215d3f (patch) | |
tree | 47213ec589205cc332c954849e01d8ab766d409d | |
parent | e845d64743ee397ff132e7f81e6bfb3597f9f479 (diff) |
usb: phy: rcar-gen2-usb: Fix USBHS_UGSTS_LOCK value
According to the technical update (No. TN-RCS-B011A/E), the UGSTS LOCK
bit location is bit 8, not bits 9 and 8. So, this patch fixes the
USBHS_UGSTS_LOCK value.
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/phy/phy-rcar-gen2-usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/phy/phy-rcar-gen2-usb.c b/drivers/usb/phy/phy-rcar-gen2-usb.c index f83808413ba2..f81800b6562a 100644 --- a/drivers/usb/phy/phy-rcar-gen2-usb.c +++ b/drivers/usb/phy/phy-rcar-gen2-usb.c | |||
@@ -47,7 +47,7 @@ struct rcar_gen2_usb_phy_priv { | |||
47 | 47 | ||
48 | /* USB General status register */ | 48 | /* USB General status register */ |
49 | #define USBHS_UGSTS_REG 0x88 | 49 | #define USBHS_UGSTS_REG 0x88 |
50 | #define USBHS_UGSTS_LOCK (3 << 8) | 50 | #define USBHS_UGSTS_LOCK (1 << 8) |
51 | 51 | ||
52 | /* Enable USBHS internal phy */ | 52 | /* Enable USBHS internal phy */ |
53 | static int __rcar_gen2_usbhs_phy_enable(void __iomem *base) | 53 | static int __rcar_gen2_usbhs_phy_enable(void __iomem *base) |