mirror of
https://github.com/torvalds/linux.git
synced 2026-09-14 16:10:02 +02:00
The mvebu_a3700_utmi_phy_power_off() function tries to modify the
USB2_PHY_CTRL register by using the IO address of the PHY IP block along
with the readl/writel IO accessors. However, the register exist in the
USB miscellaneous register space, and as such it must be accessed via
regmap like it is done in the mvebu_a3700_utmi_phy_power_on() function.
Change the code to use regmap_update_bits() for modífying the register
to fix this.
Fixes:
|
||
|---|---|---|
| .. | ||
| Kconfig | ||
| Makefile | ||
| phy-armada38x-comphy.c | ||
| phy-armada375-usb2.c | ||
| phy-berlin-sata.c | ||
| phy-berlin-usb.c | ||
| phy-mmp3-hsic.c | ||
| phy-mmp3-usb.c | ||
| phy-mvebu-a3700-comphy.c | ||
| phy-mvebu-a3700-utmi.c | ||
| phy-mvebu-cp110-comphy.c | ||
| phy-mvebu-cp110-utmi.c | ||
| phy-mvebu-sata.c | ||
| phy-pxa-28nm-hsic.c | ||
| phy-pxa-28nm-usb2.c | ||
| phy-pxa-usb.c | ||