diff options
author | Felipe Balbi <balbi@ti.com> | 2010-12-02 05:28:39 -0500 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2010-12-10 03:21:27 -0500 |
commit | 3c8a5fcc051c05cfdd8e3f0d37ba3c183d509cb9 (patch) | |
tree | 3e3ef806ab7caf785b681a082edce3dee9adf7f7 | |
parent | 496351413a227a6c0ea1a704d3d4c775d413fd08 (diff) |
usb: musb: mark musb_save/restore_context static
those aren't used outside musb_core.c, so mark
them as static.
Signed-off-by: Felipe Balbi <balbi@ti.com>
-rw-r--r-- | drivers/usb/musb/musb_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c index 4e048e3c3629..437a4c8c0128 100644 --- a/drivers/usb/musb/musb_core.c +++ b/drivers/usb/musb/musb_core.c | |||
@@ -2242,7 +2242,7 @@ static int __exit musb_remove(struct platform_device *pdev) | |||
2242 | 2242 | ||
2243 | #ifdef CONFIG_PM | 2243 | #ifdef CONFIG_PM |
2244 | 2244 | ||
2245 | void musb_save_context(struct musb *musb) | 2245 | static void musb_save_context(struct musb *musb) |
2246 | { | 2246 | { |
2247 | int i; | 2247 | int i; |
2248 | void __iomem *musb_base = musb->mregs; | 2248 | void __iomem *musb_base = musb->mregs; |
@@ -2310,7 +2310,7 @@ void musb_save_context(struct musb *musb) | |||
2310 | musb_platform_suspend(musb); | 2310 | musb_platform_suspend(musb); |
2311 | } | 2311 | } |
2312 | 2312 | ||
2313 | void musb_restore_context(struct musb *musb) | 2313 | static void musb_restore_context(struct musb *musb) |
2314 | { | 2314 | { |
2315 | int i; | 2315 | int i; |
2316 | void __iomem *musb_base = musb->mregs; | 2316 | void __iomem *musb_base = musb->mregs; |