mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-02 07:11:12 +00:00
ALSA: mpu401: Delete an error message for a failed memory allocation in snd_mpu401_uart_new()
Omit an extra message for a memory allocation failure in this function. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
2b223a9119
commit
30b2aeb8a8
@ -545,7 +545,6 @@ int snd_mpu401_uart_new(struct snd_card *card, int device,
|
|||||||
return err;
|
return err;
|
||||||
mpu = kzalloc(sizeof(*mpu), GFP_KERNEL);
|
mpu = kzalloc(sizeof(*mpu), GFP_KERNEL);
|
||||||
if (mpu == NULL) {
|
if (mpu == NULL) {
|
||||||
snd_printk(KERN_ERR "mpu401_uart: cannot allocate\n");
|
|
||||||
snd_device_free(card, rmidi);
|
snd_device_free(card, rmidi);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user