diff options
| author | Tobias Klauser <[email protected]> | 2006-10-04 18:12:43 +0200 |
|---|---|---|
| committer | Jaroslav Kysela <[email protected]> | 2006-12-20 08:55:31 +0100 |
| commit | cf78bbc4b1dca9ce14b665143cf693c35da47eb0 (patch) | |
| tree | 6d293daa4cfe7e71645ac3299125534465670287 | |
| parent | 082d6c673cae6565d874cd9f64ab304edaa8ef66 (diff) | |
[ALSA] sound/usb/usbaudio: Handle return value of usb_register()
Handle the return value of usb_register() in the module_init function.
Signed-off-by: Tobias Klauser <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
Signed-off-by: Jaroslav Kysela <[email protected]>
| -rw-r--r-- | sound/usb/usbaudio.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/usb/usbaudio.c b/sound/usb/usbaudio.c index 67202b9eeb77..3d7f36fb4cf0 100644 --- a/sound/usb/usbaudio.c +++ b/sound/usb/usbaudio.c @@ -3577,8 +3577,7 @@ static int __init snd_usb_audio_init(void) printk(KERN_WARNING "invalid nrpacks value.\n"); return -EINVAL; } - usb_register(&usb_audio_driver); - return 0; + return usb_register(&usb_audio_driver); } |