option.c (456ba5a7802e58eccb5aa9751b3ab515ef99b9ca) | option.c (b8f0e82044c9ba40e92340c8a6d47d6bd6d819bc) |
---|---|
1/* 2 USB Driver for GSM modems 3 4 Copyright (C) 2005 Matthias Urlichs <smurf@smurf.noris.de> 5 6 This driver is free software; you can redistribute it and/or modify 7 it under the terms of Version 2 of the GNU General Public License as 8 published by the Free Software Foundation. --- 1274 unchanged lines hidden (view full) --- 1283 .dtr_rts = usb_wwan_dtr_rts, 1284 .write = usb_wwan_write, 1285 .write_room = usb_wwan_write_room, 1286 .chars_in_buffer = usb_wwan_chars_in_buffer, 1287 .set_termios = usb_wwan_set_termios, 1288 .tiocmget = usb_wwan_tiocmget, 1289 .tiocmset = usb_wwan_tiocmset, 1290 .ioctl = usb_wwan_ioctl, | 1/* 2 USB Driver for GSM modems 3 4 Copyright (C) 2005 Matthias Urlichs <smurf@smurf.noris.de> 5 6 This driver is free software; you can redistribute it and/or modify 7 it under the terms of Version 2 of the GNU General Public License as 8 published by the Free Software Foundation. --- 1274 unchanged lines hidden (view full) --- 1283 .dtr_rts = usb_wwan_dtr_rts, 1284 .write = usb_wwan_write, 1285 .write_room = usb_wwan_write_room, 1286 .chars_in_buffer = usb_wwan_chars_in_buffer, 1287 .set_termios = usb_wwan_set_termios, 1288 .tiocmget = usb_wwan_tiocmget, 1289 .tiocmset = usb_wwan_tiocmset, 1290 .ioctl = usb_wwan_ioctl, |
1291 .attach = usb_wwan_startup, | |
1292 .release = option_release, | 1291 .release = option_release, |
1292 .port_probe = usb_wwan_port_probe, |
|
1293 .port_remove = usb_wwan_port_remove, 1294 .read_int_callback = option_instat_callback, 1295#ifdef CONFIG_PM 1296 .suspend = usb_wwan_suspend, 1297 .resume = usb_wwan_resume, 1298#endif 1299}; 1300 --- 196 unchanged lines hidden --- | 1293 .port_remove = usb_wwan_port_remove, 1294 .read_int_callback = option_instat_callback, 1295#ifdef CONFIG_PM 1296 .suspend = usb_wwan_suspend, 1297 .resume = usb_wwan_resume, 1298#endif 1299}; 1300 --- 196 unchanged lines hidden --- |