Cc: Johan Hovold <jhov...@gmail.com>
Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org>
Cc: linux-usb@vger.kernel.org
Signed-off-by: Fabian Frederick <f...@skynet.be>
---
 drivers/usb/serial/mos7840.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/usb/serial/mos7840.c b/drivers/usb/serial/mos7840.c
index 393be56..3d88eef 100644
--- a/drivers/usb/serial/mos7840.c
+++ b/drivers/usb/serial/mos7840.c
@@ -1181,10 +1181,7 @@ static void mos7840_close(struct usb_serial_port *port)
        /* Freeing Write URBs */
        for (j = 0; j < NUM_URBS; ++j) {
                if (mos7840_port->write_urb_pool[j]) {
-                       if (mos7840_port->write_urb_pool[j]->transfer_buffer)
-                               kfree(mos7840_port->write_urb_pool[j]->
-                                     transfer_buffer);
-
+                       kfree(mos7840_port->write_urb_pool[j]->transfer_buffer);
                        usb_free_urb(mos7840_port->write_urb_pool[j]);
                }
        }
-- 
1.8.4.5

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to