Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a9f87265 authored by Hemant Kumar's avatar Hemant Kumar
Browse files

usb: xhci-msm-hsic: Fix the bit position for HSIC register



Update incorrect REGADDR bit position for global USB2 PHY
Vendor Control Register from 26:21 to 21:16.

Change-Id: I3a37f46d52a8af450bd44f61ea9ff26fd77099ee
Signed-off-by: default avatarHemant Kumar <hemantk@codeaurora.org>
parent 1502243d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@
#define GUSB2PHYACC_VSTSDONE	BIT(24)
#define GUSB2PHYACC_VSTSBUSY	BIT(23)
#define GUSB2PHYACC_REGWR	BIT(22)
#define GUSB2PHYACC_REGADDR(n)	(((n) & 0x3F) << 21)
#define GUSB2PHYACC_REGADDR(n)	(((n) & 0x3F) << 16)
#define GUSB2PHYACC_REGDATA(n)	((n) & 0xFF)

/* QSCRATCH ctrl reg */