mirror of
https://github.com/torvalds/linux.git
synced 2024-12-15 15:41:58 +00:00
USB: suspend/resume for opticon driver
this does the standard support for suspend/resume for the opticon driver. Signed-off-by: Oliver Neukum <oneukum@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
4901b2c34e
commit
d1c0713dae
@ -306,11 +306,37 @@ static void opticon_shutdown(struct usb_serial *serial)
|
|||||||
usb_set_serial_data(serial, NULL);
|
usb_set_serial_data(serial, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int opticon_suspend(struct usb_interface *intf, pm_message_t message)
|
||||||
|
{
|
||||||
|
struct usb_serial *serial = usb_get_intfdata(intf);
|
||||||
|
struct opticon_private *priv = usb_get_serial_data(serial);
|
||||||
|
|
||||||
|
usb_kill_urb(priv->bulk_read_urb);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int opticon_resume(struct usb_interface *intf)
|
||||||
|
{
|
||||||
|
struct usb_serial *serial = usb_get_intfdata(intf);
|
||||||
|
struct opticon_private *priv = usb_get_serial_data(serial);
|
||||||
|
struct usb_serial_port *port = serial->port[0];
|
||||||
|
int result;
|
||||||
|
|
||||||
|
mutex_lock(&port->mutex);
|
||||||
|
if (port->port.count)
|
||||||
|
result = usb_submit_urb(priv->bulk_read_urb, GFP_NOIO);
|
||||||
|
else
|
||||||
|
result = 0;
|
||||||
|
mutex_unlock(&port->mutex);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
static struct usb_driver opticon_driver = {
|
static struct usb_driver opticon_driver = {
|
||||||
.name = "opticon",
|
.name = "opticon",
|
||||||
.probe = usb_serial_probe,
|
.probe = usb_serial_probe,
|
||||||
.disconnect = usb_serial_disconnect,
|
.disconnect = usb_serial_disconnect,
|
||||||
|
.suspend = opticon_suspend,
|
||||||
|
.resume = opticon_resume,
|
||||||
.id_table = id_table,
|
.id_table = id_table,
|
||||||
.no_dynamic_id = 1,
|
.no_dynamic_id = 1,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user