diff options
author | Axel Lin <axel.lin@ingics.com> | 2016-08-12 17:27:38 +0800 |
---|---|---|
committer | Kishon Vijay Abraham I <kishon@ti.com> | 2016-09-10 16:48:25 +0530 |
commit | d223472505d4211b348a5931605858c85b395df5 (patch) | |
tree | 627ecdb5185e7ecdd5aff8cf3b3bb0fcd4e9e22b /drivers/phy | |
parent | 017300da3a4547d85e52c2484fc0bd759e1bbcdb (diff) | |
download | op-kernel-dev-d223472505d4211b348a5931605858c85b395df5.zip op-kernel-dev-d223472505d4211b348a5931605858c85b395df5.tar.gz |
phy: exynos5-usbdrd: Remove "static" from local variable
The 'reg' local variable does not need to be static.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'drivers/phy')
-rw-r--r-- | drivers/phy/phy-exynos5-usbdrd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/phy/phy-exynos5-usbdrd.c b/drivers/phy/phy-exynos5-usbdrd.c index 20696f5..07ed608 100644 --- a/drivers/phy/phy-exynos5-usbdrd.c +++ b/drivers/phy/phy-exynos5-usbdrd.c @@ -249,7 +249,7 @@ static void exynos5_usbdrd_phy_isol(struct phy_usb_instance *inst, static unsigned int exynos5_usbdrd_pipe3_set_refclk(struct phy_usb_instance *inst) { - static u32 reg; + u32 reg; struct exynos5_usbdrd_phy *phy_drd = to_usbdrd_phy(inst); /* restore any previous reference clock settings */ @@ -295,7 +295,7 @@ exynos5_usbdrd_pipe3_set_refclk(struct phy_usb_instance *inst) static unsigned int exynos5_usbdrd_utmi_set_refclk(struct phy_usb_instance *inst) { - static u32 reg; + u32 reg; struct exynos5_usbdrd_phy *phy_drd = to_usbdrd_phy(inst); /* restore any previous reference clock settings */ |