mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 23:34:05 +08:00
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>
This commit is contained in:
parent
c99776cc40
commit
02cc53e223
@ -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: */
|
||||
|
Loading…
Reference in New Issue
Block a user