diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-08-05 01:17:11 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-08-09 09:34:21 -0400 |
commit | 1e0f20bea2b08775eb832e8f95d320cddd65737b (patch) | |
tree | 6825e2ad9283dab2ebe2993eccec7fcb306a0b7e | |
parent | cf1dea73c72ded6e1e1f61598a69b663d4c163ed (diff) |
usb: phy: mv-u3d: Staticize mv_u3d_phy_shutdown()
mv_u3d_phy_shutdown() is used only in this file.
Fix the following sparse warning:
drivers/usb/phy/phy-mv-u3d-usb.c:85:6: warning: symbol 'mv_u3d_phy_shutdown' was not declared. Should it be static?
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
-rw-r--r-- | drivers/usb/phy/phy-mv-u3d-usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/phy/phy-mv-u3d-usb.c b/drivers/usb/phy/phy-mv-u3d-usb.c index 6688023021d3..d317903022bf 100644 --- a/drivers/usb/phy/phy-mv-u3d-usb.c +++ b/drivers/usb/phy/phy-mv-u3d-usb.c | |||
@@ -82,7 +82,7 @@ static void mv_u3d_phy_write(void __iomem *base, u32 reg, u32 value) | |||
82 | writel_relaxed(value, data); | 82 | writel_relaxed(value, data); |
83 | } | 83 | } |
84 | 84 | ||
85 | void mv_u3d_phy_shutdown(struct usb_phy *phy) | 85 | static void mv_u3d_phy_shutdown(struct usb_phy *phy) |
86 | { | 86 | { |
87 | struct mv_u3d_phy *mv_u3d_phy; | 87 | struct mv_u3d_phy *mv_u3d_phy; |
88 | void __iomem *base; | 88 | void __iomem *base; |