aboutsummaryrefslogtreecommitdiff
path: root/drivers/usb/serial/f81232.c
AgeCommit message (Collapse)AuthorFilesLines
2012-05-07usb-serial: clean up unneeded PM-related fieldsAlan Stern1-4/+0
This patch (as1551) cleans up the PM-related entries in the usb_driver structures of the various USB serial driver modules. Those entries are now filled in by the usb-serial core during driver registration, so they don't need to be initialized explicitly in the source code. The same is true of the one remaining no_dynamic_id entry. reset_resume remains a small problem, because the serial core doesn't support it. The patch ignores these entries. Signed-off-by: Alan Stern <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
2012-05-03USB: f81232.c: remove dbg() tracing callsGreg Kroah-Hartman1-3/+0
dbg() was used a lot a long time ago to trace code flow. Now that we have ftrace, this isn't needed at all, so remove these calls. Signed-off-by: Greg Kroah-Hartman <[email protected]>
2012-02-28USB: serial: add Fintek F81232 usb to serial driverGreg Kroah-Hartman1-0/+405
This is the first cut at a driver for the Fintek F81232 USB to serial single port converter. This provides the initial framework for the device, and some data can move through it, but no line settings are handled, so it's not that useful yet. It does give people a starting place to work from. Thank to Fintek for providing samples and specifications, without which, this driver would have never been able to be written. Cc: Amanda Ying <[email protected]> Cc: Tom Tsai <[email protected]> Cc: <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>