usb: gadget: udc: net2272: do not rely on 'driver' argument

future patches will remove the extra 'driver'
argument to ->udc_stop(), in order to do that,
we must make sure that our UDC does not rely
on it first.

Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
Felipe Balbi 2014-10-17 11:22:52 -05:00
parent 2f1ae50108
commit 5baca5cf25

View File

@ -1511,12 +1511,13 @@ static int net2272_stop(struct usb_gadget *_gadget,
dev = container_of(_gadget, struct net2272, gadget);
spin_lock_irqsave(&dev->lock, flags);
stop_activity(dev, driver);
stop_activity(dev, NULL);
spin_unlock_irqrestore(&dev->lock, flags);
dev_dbg(dev->dev, "unregistered driver '%s'\n",
dev->driver->driver.name);
dev->driver = NULL;
dev_dbg(dev->dev, "unregistered driver '%s'\n", driver->driver.name);
return 0;
}