aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-09-19 12:15:26 +0530
committerDavid S. Miller <davem@davemloft.net>2013-09-20 14:41:02 -0400
commit052c19e60d3c4dcded53f2c591efb5de84efd68c (patch)
tree1cf0cb573712c67bd0f1439f6f66b493f94eb06e
parentnet: cxgb4vf: Staticize local symbols (diff)
downloadlinux-dev-052c19e60d3c4dcded53f2c591efb5de84efd68c.tar.xz
linux-dev-052c19e60d3c4dcded53f2c591efb5de84efd68c.zip
net: cdc-phonet: Staticize usbpn_probe
'usbpn_probe' is referenced only in this file. Make it static. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Acked-by: Rémi Denis-Courmont <remi@remlab.net> Cc: Rémi Denis-Courmont <remi@remlab.net> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/usb/cdc-phonet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/usb/cdc-phonet.c b/drivers/net/usb/cdc-phonet.c
index 7d78669000d7..6358d420e185 100644
--- a/drivers/net/usb/cdc-phonet.c
+++ b/drivers/net/usb/cdc-phonet.c
@@ -328,7 +328,7 @@ MODULE_DEVICE_TABLE(usb, usbpn_ids);
static struct usb_driver usbpn_driver;
-int usbpn_probe(struct usb_interface *intf, const struct usb_device_id *id)
+static int usbpn_probe(struct usb_interface *intf, const struct usb_device_id *id)
{
static const char ifname[] = "usbpn%d";
const struct usb_cdc_union_desc *union_header = NULL;