OSDN Git Service

ALSA: line6: Remove superfluous out-of-memory error messages
authorTakashi Iwai <tiwai@suse.de>
Mon, 19 Jan 2015 14:05:10 +0000 (15:05 +0100)
committerTakashi Iwai <tiwai@suse.de>
Tue, 20 Jan 2015 07:16:01 +0000 (08:16 +0100)
Kernel already shows the error in the common path.

Tested-by: Chris Rorvick <chris@rorvick.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/usb/line6/capture.c
sound/usb/line6/driver.c
sound/usb/line6/midi.c
sound/usb/line6/playback.c
sound/usb/line6/variax.c

index 1970ab5..727b318 100644 (file)
@@ -402,10 +402,8 @@ int line6_create_audio_in_urbs(struct snd_line6_pcm *line6pcm)
                urb = line6pcm->urb_audio_in[i] =
                    usb_alloc_urb(LINE6_ISO_PACKETS, GFP_KERNEL);
 
-               if (urb == NULL) {
-                       dev_err(line6->ifcdev, "Out of memory\n");
+               if (urb == NULL)
                        return -ENOMEM;
-               }
 
                urb->dev = line6->usbdev;
                urb->pipe =
index 23d504f..b8f5134 100644 (file)
@@ -190,7 +190,6 @@ int line6_send_raw_message_async(struct usb_line6 *line6, const char *buffer,
 
        if (urb == NULL) {
                kfree(msg);
-               dev_err(line6->ifcdev, "Out of memory\n");
                return -ENOMEM;
        }
 
@@ -215,10 +214,8 @@ int line6_version_request_async(struct usb_line6 *line6)
 
        buffer = kmemdup(line6_request_version,
                        sizeof(line6_request_version), GFP_ATOMIC);
-       if (buffer == NULL) {
-               dev_err(line6->ifcdev, "Out of memory");
+       if (buffer == NULL)
                return -ENOMEM;
-       }
 
        retval = line6_send_raw_message_async(line6, buffer,
                                              sizeof(line6_request_version));
@@ -593,7 +590,6 @@ int line6_probe(struct usb_interface *interface,
                line6->urb_listen = usb_alloc_urb(0, GFP_KERNEL);
 
                if (line6->urb_listen == NULL) {
-                       dev_err(&interface->dev, "Out of memory\n");
                        ret = -ENOMEM;
                        goto err_destruct;
                }
index ebca5eb..f333cef 100644 (file)
@@ -121,16 +121,13 @@ static int send_midi_async(struct usb_line6 *line6, unsigned char *data,
 
        urb = usb_alloc_urb(0, GFP_ATOMIC);
 
-       if (urb == NULL) {
-               dev_err(line6->ifcdev, "Out of memory\n");
+       if (urb == NULL)
                return -ENOMEM;
-       }
 
        transfer_buffer = kmemdup(data, length, GFP_ATOMIC);
 
        if (transfer_buffer == NULL) {
                usb_free_urb(urb);
-               dev_err(line6->ifcdev, "Out of memory\n");
                return -ENOMEM;
        }
 
index 8fc2ded..5a7fe40 100644 (file)
@@ -558,10 +558,8 @@ int line6_create_audio_out_urbs(struct snd_line6_pcm *line6pcm)
                urb = line6pcm->urb_audio_out[i] =
                    usb_alloc_urb(LINE6_ISO_PACKETS, GFP_KERNEL);
 
-               if (urb == NULL) {
-                       dev_err(line6->ifcdev, "Out of memory\n");
+               if (urb == NULL)
                        return -ENOMEM;
-               }
 
                urb->dev = line6->usbdev;
                urb->pipe =
index 0c852bb..9a9c7e4 100644 (file)
@@ -260,10 +260,8 @@ static int variax_try_init(struct usb_interface *interface,
        variax->buffer_activate = kmemdup(variax_activate,
                                          sizeof(variax_activate), GFP_KERNEL);
 
-       if (variax->buffer_activate == NULL) {
-               dev_err(&interface->dev, "Out of memory\n");
+       if (variax->buffer_activate == NULL)
                return -ENOMEM;
-       }
 
        /* initialize audio system: */
        err = line6_init_audio(&variax->line6);