Browse Source

ALSA: vx: remove 'out of memory' message

Reported by checkpatch.pl

Signed-off-by: Mihai Burduselu <michelcatalin@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Mihai Burduselu 8 years ago
parent
commit
a65895e0ee
1 changed files with 1 additions and 3 deletions
  1. 1 3
      sound/drivers/vx/vx_core.c

+ 1 - 3
sound/drivers/vx/vx_core.c

@@ -795,10 +795,8 @@ struct vx_core *snd_vx_create(struct snd_card *card, struct snd_vx_hardware *hw,
 		return NULL;
 		return NULL;
 
 
 	chip = kzalloc(sizeof(*chip) + extra_size, GFP_KERNEL);
 	chip = kzalloc(sizeof(*chip) + extra_size, GFP_KERNEL);
-	if (! chip) {
-		snd_printk(KERN_ERR "vx_core: no memory\n");
+	if (! chip)
 		return NULL;
 		return NULL;
-	}
 	mutex_init(&chip->lock);
 	mutex_init(&chip->lock);
 	chip->irq = -1;
 	chip->irq = -1;
 	chip->hw = hw;
 	chip->hw = hw;