diff options
Diffstat (limited to 'drivers/usb/serial/ark3116.c')
-rw-r--r-- | drivers/usb/serial/ark3116.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/serial/ark3116.c b/drivers/usb/serial/ark3116.c index aa7a6838a3d4..9d708b22e955 100644 --- a/drivers/usb/serial/ark3116.c +++ b/drivers/usb/serial/ark3116.c | |||
@@ -173,7 +173,7 @@ static void ark3116_set_termios(struct usb_serial_port *port, | |||
173 | 173 | ||
174 | config = 0; | 174 | config = 0; |
175 | 175 | ||
176 | dbg("%s - port %d", __FUNCTION__, port->number); | 176 | dbg("%s - port %d", __func__, port->number); |
177 | 177 | ||
178 | spin_lock_irqsave(&priv->lock, flags); | 178 | spin_lock_irqsave(&priv->lock, flags); |
179 | if (!priv->termios_initialized) { | 179 | if (!priv->termios_initialized) { |
@@ -323,7 +323,7 @@ static int ark3116_open(struct usb_serial_port *port, struct file *filp) | |||
323 | char *buf; | 323 | char *buf; |
324 | int result = 0; | 324 | int result = 0; |
325 | 325 | ||
326 | dbg("%s - port %d", __FUNCTION__, port->number); | 326 | dbg("%s - port %d", __func__, port->number); |
327 | 327 | ||
328 | buf = kmalloc(1, GFP_KERNEL); | 328 | buf = kmalloc(1, GFP_KERNEL); |
329 | if (!buf) { | 329 | if (!buf) { |
@@ -395,7 +395,7 @@ static int ark3116_ioctl(struct usb_serial_port *port, struct file *file, | |||
395 | return -EFAULT; | 395 | return -EFAULT; |
396 | return 0; | 396 | return 0; |
397 | default: | 397 | default: |
398 | dbg("%s cmd 0x%04x not supported", __FUNCTION__, cmd); | 398 | dbg("%s cmd 0x%04x not supported", __func__, cmd); |
399 | break; | 399 | break; |
400 | } | 400 | } |
401 | 401 | ||