Lines Matching defs:serial
10 * parallel ports and serial ports. This driver is for dealing with
110 * and serial ports. The form is 0x00PS, where <P> is the number of
111 * parallel ports and <S> is the number of serial ports.
325 * This table describes the serial "geometry" of these boards. Any
326 * quirks for these can be found in drivers/serial/8250_pci.c
612 struct serial_private *serial;
618 /* Register the serial port(s) of a PCI card. */
623 struct serial_private *serial;
629 serial = pciserial_init_ports(dev, board);
630 if (IS_ERR(serial))
631 return PTR_ERR(serial);
633 priv->serial = serial;
738 if (priv->serial)
739 pciserial_remove_ports(priv->serial);
752 if (priv->serial)
753 pciserial_suspend_ports(priv->serial);
763 if (priv->serial)
764 pciserial_resume_ports(priv->serial);
785 MODULE_DESCRIPTION("Driver for common parallel+serial multi-I/O PCI cards");