qcserial.c (ef8c029fa793423439e67ef0416b220d3fa3321a) | qcserial.c (b8f0e82044c9ba40e92340c8a6d47d6bd6d819bc) |
---|---|
1/* 2 * Qualcomm Serial USB driver 3 * 4 * Copyright (c) 2008 QUALCOMM Incorporated. 5 * Copyright (c) 2009 Greg Kroah-Hartman <gregkh@suse.de> 6 * Copyright (c) 2009 Novell Inc. 7 * 8 * This program is free software; you can redistribute it and/or --- 271 unchanged lines hidden (view full) --- 280 .id_table = id_table, 281 .num_ports = 1, 282 .probe = qcprobe, 283 .open = usb_wwan_open, 284 .close = usb_wwan_close, 285 .write = usb_wwan_write, 286 .write_room = usb_wwan_write_room, 287 .chars_in_buffer = usb_wwan_chars_in_buffer, | 1/* 2 * Qualcomm Serial USB driver 3 * 4 * Copyright (c) 2008 QUALCOMM Incorporated. 5 * Copyright (c) 2009 Greg Kroah-Hartman <gregkh@suse.de> 6 * Copyright (c) 2009 Novell Inc. 7 * 8 * This program is free software; you can redistribute it and/or --- 271 unchanged lines hidden (view full) --- 280 .id_table = id_table, 281 .num_ports = 1, 282 .probe = qcprobe, 283 .open = usb_wwan_open, 284 .close = usb_wwan_close, 285 .write = usb_wwan_write, 286 .write_room = usb_wwan_write_room, 287 .chars_in_buffer = usb_wwan_chars_in_buffer, |
288 .attach = usb_wwan_startup, | |
289 .release = qc_release, | 288 .release = qc_release, |
289 .port_probe = usb_wwan_port_probe, |
|
290 .port_remove = usb_wwan_port_remove, 291#ifdef CONFIG_PM 292 .suspend = usb_wwan_suspend, 293 .resume = usb_wwan_resume, 294#endif 295}; 296 297static struct usb_serial_driver * const serial_drivers[] = { 298 &qcdevice, NULL 299}; 300 301module_usb_serial_driver(serial_drivers, id_table); 302 303MODULE_AUTHOR(DRIVER_AUTHOR); 304MODULE_DESCRIPTION(DRIVER_DESC); 305MODULE_LICENSE("GPL v2"); | 290 .port_remove = usb_wwan_port_remove, 291#ifdef CONFIG_PM 292 .suspend = usb_wwan_suspend, 293 .resume = usb_wwan_resume, 294#endif 295}; 296 297static struct usb_serial_driver * const serial_drivers[] = { 298 &qcdevice, NULL 299}; 300 301module_usb_serial_driver(serial_drivers, id_table); 302 303MODULE_AUTHOR(DRIVER_AUTHOR); 304MODULE_DESCRIPTION(DRIVER_DESC); 305MODULE_LICENSE("GPL v2"); |