]> git.karo-electronics.de Git - karo-tx-linux.git/commit
usb: use usb_serial_put in usb_serial_probe errors
authorJan Safrata <jan.nikitenko@gmail.com>
Tue, 22 May 2012 12:04:50 +0000 (14:04 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 26 Nov 2012 19:37:49 +0000 (11:37 -0800)
commit9dbd3418ff461025e904e65326aeeb5389f65799
tree9756325e9cd5205ec4eb324927d3a9fea25bfb3b
parenta39bdce2f2a9aebda1b9438c4b2e91c0dd507a34
usb: use usb_serial_put in usb_serial_probe errors

commit 0658a3366db7e27fa32c12e886230bb58c414c92 upstream.

The use of kfree(serial) in error cases of usb_serial_probe
was invalid - usb_serial structure allocated in create_serial()
gets reference of usb_device that needs to be put, so we need
to use usb_serial_put() instead of simple kfree().

Signed-off-by: Jan Safrata <jan.nikitenko@gmail.com>
Acked-by: Johan Hovold <jhovold@gmail.com>
Cc: Richard Retanubun <richardretanubun@ruggedcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/serial/usb-serial.c