diff options
Diffstat (limited to 'drivers/usb/class/cdc-acm.c')
-rw-r--r-- | drivers/usb/class/cdc-acm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c index 6d57413ac0f5..33cdf8fa2f20 100644 --- a/drivers/usb/class/cdc-acm.c +++ b/drivers/usb/class/cdc-acm.c | |||
@@ -260,10 +260,10 @@ static void acm_ctrl_irq(struct urb *urb) | |||
260 | case -ENOENT: | 260 | case -ENOENT: |
261 | case -ESHUTDOWN: | 261 | case -ESHUTDOWN: |
262 | /* this urb is terminated, clean up */ | 262 | /* this urb is terminated, clean up */ |
263 | dbg("%s - urb shutting down with status: %d", __FUNCTION__, status); | 263 | dbg("%s - urb shutting down with status: %d", __func__, status); |
264 | return; | 264 | return; |
265 | default: | 265 | default: |
266 | dbg("%s - nonzero urb status received: %d", __FUNCTION__, status); | 266 | dbg("%s - nonzero urb status received: %d", __func__, status); |
267 | goto exit; | 267 | goto exit; |
268 | } | 268 | } |
269 | 269 | ||
@@ -307,7 +307,7 @@ exit: | |||
307 | retval = usb_submit_urb (urb, GFP_ATOMIC); | 307 | retval = usb_submit_urb (urb, GFP_ATOMIC); |
308 | if (retval) | 308 | if (retval) |
309 | err ("%s - usb_submit_urb failed with result %d", | 309 | err ("%s - usb_submit_urb failed with result %d", |
310 | __FUNCTION__, retval); | 310 | __func__, retval); |
311 | } | 311 | } |
312 | 312 | ||
313 | /* data interface returns incoming bytes, or we got unthrottled */ | 313 | /* data interface returns incoming bytes, or we got unthrottled */ |