diff options
Diffstat (limited to 'drivers/usb/gadget/ether.c')
-rw-r--r-- | drivers/usb/gadget/ether.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/usb/gadget/ether.c b/drivers/usb/gadget/ether.c index e99872308144..bb93bdd76593 100644 --- a/drivers/usb/gadget/ether.c +++ b/drivers/usb/gadget/ether.c | |||
@@ -1102,7 +1102,7 @@ static void eth_reset_config (struct eth_dev *dev) | |||
1102 | if (dev->config == 0) | 1102 | if (dev->config == 0) |
1103 | return; | 1103 | return; |
1104 | 1104 | ||
1105 | DEBUG (dev, "%s\n", __FUNCTION__); | 1105 | DEBUG (dev, "%s\n", __func__); |
1106 | 1106 | ||
1107 | netif_stop_queue (dev->net); | 1107 | netif_stop_queue (dev->net); |
1108 | netif_carrier_off (dev->net); | 1108 | netif_carrier_off (dev->net); |
@@ -1263,7 +1263,7 @@ static void issue_start_status (struct eth_dev *dev) | |||
1263 | struct usb_cdc_notification *event; | 1263 | struct usb_cdc_notification *event; |
1264 | int value; | 1264 | int value; |
1265 | 1265 | ||
1266 | DEBUG (dev, "%s, flush old status first\n", __FUNCTION__); | 1266 | DEBUG (dev, "%s, flush old status first\n", __func__); |
1267 | 1267 | ||
1268 | /* flush old status | 1268 | /* flush old status |
1269 | * | 1269 | * |
@@ -1329,7 +1329,7 @@ static void rndis_command_complete (struct usb_ep *ep, struct usb_request *req) | |||
1329 | spin_lock(&dev->lock); | 1329 | spin_lock(&dev->lock); |
1330 | status = rndis_msg_parser (dev->rndis_config, (u8 *) req->buf); | 1330 | status = rndis_msg_parser (dev->rndis_config, (u8 *) req->buf); |
1331 | if (status < 0) | 1331 | if (status < 0) |
1332 | ERROR(dev, "%s: rndis parse error %d\n", __FUNCTION__, status); | 1332 | ERROR(dev, "%s: rndis parse error %d\n", __func__, status); |
1333 | spin_unlock(&dev->lock); | 1333 | spin_unlock(&dev->lock); |
1334 | } | 1334 | } |
1335 | 1335 | ||
@@ -2113,7 +2113,7 @@ static int rndis_control_ack (struct net_device *net) | |||
2113 | 2113 | ||
2114 | static void eth_start (struct eth_dev *dev, gfp_t gfp_flags) | 2114 | static void eth_start (struct eth_dev *dev, gfp_t gfp_flags) |
2115 | { | 2115 | { |
2116 | DEBUG (dev, "%s\n", __FUNCTION__); | 2116 | DEBUG (dev, "%s\n", __func__); |
2117 | 2117 | ||
2118 | /* fill the rx queue */ | 2118 | /* fill the rx queue */ |
2119 | rx_fill (dev, gfp_flags); | 2119 | rx_fill (dev, gfp_flags); |
@@ -2133,7 +2133,7 @@ static int eth_open (struct net_device *net) | |||
2133 | { | 2133 | { |
2134 | struct eth_dev *dev = netdev_priv(net); | 2134 | struct eth_dev *dev = netdev_priv(net); |
2135 | 2135 | ||
2136 | DEBUG (dev, "%s\n", __FUNCTION__); | 2136 | DEBUG (dev, "%s\n", __func__); |
2137 | if (netif_carrier_ok (dev->net)) | 2137 | if (netif_carrier_ok (dev->net)) |
2138 | eth_start (dev, GFP_KERNEL); | 2138 | eth_start (dev, GFP_KERNEL); |
2139 | return 0; | 2139 | return 0; |
@@ -2143,7 +2143,7 @@ static int eth_stop (struct net_device *net) | |||
2143 | { | 2143 | { |
2144 | struct eth_dev *dev = netdev_priv(net); | 2144 | struct eth_dev *dev = netdev_priv(net); |
2145 | 2145 | ||
2146 | VDEBUG (dev, "%s\n", __FUNCTION__); | 2146 | VDEBUG (dev, "%s\n", __func__); |
2147 | netif_stop_queue (net); | 2147 | netif_stop_queue (net); |
2148 | 2148 | ||
2149 | DEBUG (dev, "stop stats: rx/tx %ld/%ld, errs %ld/%ld\n", | 2149 | DEBUG (dev, "stop stats: rx/tx %ld/%ld, errs %ld/%ld\n", |
@@ -2229,7 +2229,7 @@ eth_unbind (struct usb_gadget *gadget) | |||
2229 | set_gadget_data (gadget, NULL); | 2229 | set_gadget_data (gadget, NULL); |
2230 | } | 2230 | } |
2231 | 2231 | ||
2232 | static u8 __devinit nibble (unsigned char c) | 2232 | static u8 __init nibble (unsigned char c) |
2233 | { | 2233 | { |
2234 | if (likely (isdigit (c))) | 2234 | if (likely (isdigit (c))) |
2235 | return c - '0'; | 2235 | return c - '0'; |
@@ -2239,7 +2239,7 @@ static u8 __devinit nibble (unsigned char c) | |||
2239 | return 0; | 2239 | return 0; |
2240 | } | 2240 | } |
2241 | 2241 | ||
2242 | static int __devinit get_ether_addr(const char *str, u8 *dev_addr) | 2242 | static int __init get_ether_addr(const char *str, u8 *dev_addr) |
2243 | { | 2243 | { |
2244 | if (str) { | 2244 | if (str) { |
2245 | unsigned i; | 2245 | unsigned i; |
@@ -2260,7 +2260,7 @@ static int __devinit get_ether_addr(const char *str, u8 *dev_addr) | |||
2260 | return 1; | 2260 | return 1; |
2261 | } | 2261 | } |
2262 | 2262 | ||
2263 | static int __devinit | 2263 | static int __init |
2264 | eth_bind (struct usb_gadget *gadget) | 2264 | eth_bind (struct usb_gadget *gadget) |
2265 | { | 2265 | { |
2266 | struct eth_dev *dev; | 2266 | struct eth_dev *dev; |