3.2.95-rc1 review patch.  If anyone has any objections, please let me know.

------------------

From: Ben Hutchings <b...@decadent.org.uk>

My backport of commit 4e9a0b05257f "USB: mct_u232: add sanity checking in
probe" incorrectly added a dev_err() call using port->dev before 'port' was
initialised.  Use the 'serial' parameter to look up the device instead.

Signed-off-by: Ben Hutchings <b...@decadent.org.uk>
---
--- a/drivers/usb/serial/mct_u232.c
+++ b/drivers/usb/serial/mct_u232.c
@@ -449,7 +449,7 @@ static int mct_u232_startup(struct usb_s
 
        /* check first to simplify error handling */
        if (!serial->port[1] || !serial->port[1]->interrupt_in_urb) {
-               dev_err(&port->dev, "expected endpoint missing\n");
+               dev_err(&serial->dev->dev, "expected endpoint missing\n");
                return -ENODEV;
        }
 

Reply via email to