1
0
Fork 0

ALSA: line6: fix check on snd_card_register

The fix checks if snd_card_register() fails, and if so logs the error
via dev_err() consistent with other patches.

Signed-off-by: Aditya Pakki <pakki001@umn.edu>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
hifive-unleashed-5.1
Aditya Pakki 2019-01-06 11:01:47 -06:00 committed by Takashi Iwai
parent c99776cc40
commit 02cc53e223
1 changed files with 2 additions and 1 deletions

View File

@ -320,7 +320,8 @@ static void pod_startup4(struct work_struct *work)
line6_read_serial_number(&pod->line6, &pod->serial_number);
/* ALSA audio interface: */
snd_card_register(line6->card);
if (snd_card_register(line6->card))
dev_err(line6->ifcdev, "Failed to register POD card.\n");
}
/* POD special files: */