aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/fusbh200-hcd.c
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-05-20 01:51:22 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-05-20 14:31:24 -0400
commitd6bec48b328020590f14aa440e8adb9368072b9c (patch)
treea3beec1e17cf519ca38d2ba57c6b907a29d6399a /drivers/usb/host/fusbh200-hcd.c
parent410e5fea6a217cf3f7b187dfeabb909645a006b6 (diff)
usb: host: fusbh200-hcd: Staticize local symbols
Local symbols referenced only in this file are made static. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/fusbh200-hcd.c')
-rw-r--r--drivers/usb/host/fusbh200-hcd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/host/fusbh200-hcd.c b/drivers/usb/host/fusbh200-hcd.c
index b17dd3fd2b3d..0855ca4caac6 100644
--- a/drivers/usb/host/fusbh200-hcd.c
+++ b/drivers/usb/host/fusbh200-hcd.c
@@ -5769,7 +5769,7 @@ static const struct hc_driver fusbh200_fusbh200_hc_driver = {
5769 .clear_tt_buffer_complete = fusbh200_clear_tt_buffer_complete, 5769 .clear_tt_buffer_complete = fusbh200_clear_tt_buffer_complete,
5770}; 5770};
5771 5771
5772void fusbh200_init(struct fusbh200_hcd *fusbh200) 5772static void fusbh200_init(struct fusbh200_hcd *fusbh200)
5773{ 5773{
5774 u32 reg; 5774 u32 reg;
5775 5775
@@ -5895,7 +5895,7 @@ fail_create_hcd:
5895 * the HCD's stop() method. It is always called from a thread 5895 * the HCD's stop() method. It is always called from a thread
5896 * context, normally "rmmod", "apmd", or something similar. 5896 * context, normally "rmmod", "apmd", or something similar.
5897 */ 5897 */
5898int fusbh200_hcd_fusbh200_remove(struct platform_device *pdev) 5898static int fusbh200_hcd_fusbh200_remove(struct platform_device *pdev)
5899{ 5899{
5900 struct device *dev = &pdev->dev; 5900 struct device *dev = &pdev->dev;
5901 struct usb_hcd *hcd = dev_get_drvdata(dev); 5901 struct usb_hcd *hcd = dev_get_drvdata(dev);
@@ -5911,7 +5911,7 @@ int fusbh200_hcd_fusbh200_remove(struct platform_device *pdev)
5911 return 0; 5911 return 0;
5912} 5912}
5913 5913
5914struct platform_driver fusbh200_hcd_fusbh200_driver = { 5914static struct platform_driver fusbh200_hcd_fusbh200_driver = {
5915 .driver = { 5915 .driver = {
5916 .name = "fusbh200", 5916 .name = "fusbh200",
5917 }, 5917 },