The patch titled sound/usb/usbaudio: Handle return value of usb_register() has been added to the -mm tree. Its filename is sound-usb-usbaudio-handle-return-value-of-usb_register.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: sound/usb/usbaudio: Handle return value of usb_register() From: Tobias Klauser <tklauser@xxxxxxxxxx> Handle the return value of usb_register() in the module_init function. Signed-off-by: Tobias Klauser <tklauser@xxxxxxxxxx> Cc: Takashi Iwai <tiwai@xxxxxxx> Cc: Jaroslav Kysela <perex@xxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- sound/usb/usbaudio.c | 3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) diff -puN sound/usb/usbaudio.c~sound-usb-usbaudio-handle-return-value-of-usb_register sound/usb/usbaudio.c --- a/sound/usb/usbaudio.c~sound-usb-usbaudio-handle-return-value-of-usb_register +++ a/sound/usb/usbaudio.c @@ -3576,8 +3576,7 @@ static int __init snd_usb_audio_init(voi printk(KERN_WARNING "invalid nrpacks value.\n"); return -EINVAL; } - usb_register(&usb_audio_driver); - return 0; + return usb_register(&usb_audio_driver); } _ Patches currently in -mm which might be from tklauser@xxxxxxxxxx are origin.patch sound-usb-usbaudio-handle-return-value-of-usb_register.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html