struct tty_struct       *tty;
        unsigned int            index;
        unsigned int            opened;
-       struct mutex            open_lock;
        struct sdio_func        *func;
        struct mutex            func_lock;
        struct task_struct      *in_sdio_uart_irq;
        int index, ret = -EBUSY;
 
        kref_init(&port->kref);
-       mutex_init(&port->open_lock);
        mutex_init(&port->func_lock);
        spin_lock_init(&port->write_lock);
 
         * give up on that port ASAP.
         * Beware: the lock ordering is critical.
         */
-       mutex_lock(&port->open_lock);
+       mutex_lock(&port->port.mutex);
        mutex_lock(&port->func_lock);
        func = port->func;
        sdio_claim_host(func);
                        tty_hangup(tty);
                tty_kref_put(tty);
        }
-       mutex_unlock(&port->open_lock);
+       mutex_unlock(&port->port.mutex);
        sdio_release_irq(func);
        sdio_disable_func(func);
        sdio_release_host(func);
        if (!port)
                return -ENODEV;
 
-       mutex_lock(&port->open_lock);
+       mutex_lock(&port->port.mutex);
 
        /*
         * Make sure not to mess up with a dead port
         * which has not been closed yet.
         */
        if (tty->driver_data && tty->driver_data != port) {
-               mutex_unlock(&port->open_lock);
+               mutex_unlock(&port->port.mutex);
                sdio_uart_port_put(port);
                return -EBUSY;
        }
                if (ret) {
                        tty->driver_data = NULL;
                        tty_port_tty_set(&port->port, NULL);
-                       mutex_unlock(&port->open_lock);
+                       mutex_unlock(&port->port.mutex);
                        sdio_uart_port_put(port);
                        return ret;
                }
        }
        port->opened++;
-       mutex_unlock(&port->open_lock);
+       mutex_unlock(&port->port.mutex);
        return 0;
 }
 
        if (!port)
                return;
 
-       mutex_lock(&port->open_lock);
+       mutex_lock(&port->port.mutex);
        BUG_ON(!port->opened);
 
        /*
         * is larger than port->count.
         */
        if (tty->count > port->opened) {
-               mutex_unlock(&port->open_lock);
+               mutex_unlock(&port->port.mutex);
                return;
        }
 
                tty->driver_data = NULL;
                tty->closing = 0;
        }
-       mutex_unlock(&port->open_lock);
+       mutex_unlock(&port->port.mutex);
        sdio_uart_port_put(port);
 }