The patch titled usb: cypress_m8 init error path fix has been added to the -mm tree. Its filename is usb-cypress_m8-init-error-path-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: usb: cypress_m8 init error path fix From: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx> If at some point cypress_init() fails deregister only the resources that were registered until that point. Signed-off-by: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx> Cc: Mike Isely <isely@xxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/usb/serial/cypress_m8.c | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff -puN drivers/usb/serial/cypress_m8.c~usb-cypress_m8-init-error-path-fix drivers/usb/serial/cypress_m8.c --- a/drivers/usb/serial/cypress_m8.c~usb-cypress_m8-init-error-path-fix +++ a/drivers/usb/serial/cypress_m8.c @@ -1684,15 +1684,14 @@ static int __init cypress_init(void) info(DRIVER_DESC " " DRIVER_VERSION); return 0; + failed_usb_register: - usb_deregister(&cypress_driver); -failed_ca42v2_register: usb_serial_deregister(&cypress_ca42v2_device); -failed_hidcom_register: +failed_ca42v2_register: usb_serial_deregister(&cypress_hidcom_device); -failed_em_register: +failed_hidcom_register: usb_serial_deregister(&cypress_earthmate_device); - +failed_em_register: return retval; } _ Patches currently in -mm which might be from m.kozlowski@xxxxxxxxxx are origin.patch usb-idmouse-cleanup.patch usb-writing_usb_driver-free-urb-cleanup.patch usb-pcwd_usb-free-urb-cleanup.patch usb-iforce-usb-free-urb-cleanup.patch usb-usb-gigaset-free-kill-urb-cleanup.patch usb-cinergyt2-free-kill-urb-cleanup.patch usb-ttusb_dec-free-urb-cleanup.patch usb-pvrusb2-hdw-free-unlink-urb-cleanup.patch usb-pvrusb2-io-free-urb-cleanup.patch usb-pwc-if-free-urb-cleanup.patch usb-quickcam_messenger-free-urb-cleanup.patch usb-irda-usb-free-urb-cleanup.patch usb-zd1201-free-urb-cleanup.patch usb-ati_remote-free-urb-cleanup.patch usb-ati_remote2-free-urb-cleanup.patch usb-hid-core-free-urb-cleanup.patch usb-usbkbd-free-urb-cleanup.patch usb-auerswald-free-kill-urb-cleanup-and-memleak-fix.patch usb-phidgetkit-free-urb-cleanup.patch usb-legousbtower-free-kill-urb-cleanup.patch usb-phidgetmotorcontrol-free-urb-cleanup.patch usb-catc-free-urb-cleanup.patch usb-ftdi_sio-kill-urb-cleanup.patch usb-io_edgeport-kill-urb-cleanup.patch usb-keyspan-free-urb-cleanup.patch usb-kobil_sct-kill-urb-cleanup.patch usb-mct_u232-free-urb-cleanup.patch usb-navman-kill-urb-cleanup.patch usb-usb-serial-free-urb-cleanup.patch usb-visor-kill-urb-cleanup.patch usb-usbmidi-kill-urb-cleanup.patch usb-usbmixer-free-kill-urb-cleanup.patch usb-pwc-if-loop-fix.patch usb-ati-remote-memleak-fix.patch usb-microtek-possible-memleak-fix.patch usb-cypress_m8-init-error-path-fix.patch i2lib-unused-variable-cleanup.patch make-1-bit-bitfields-unsigned.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