Commit 8e1db0c5 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

USB serial drivers

added missing owner fields.
parent 309322b4
......@@ -197,6 +197,7 @@ static struct usb_serial_device_type ftdi_sio_device = {
};
static struct usb_serial_device_type ftdi_8U232AM_device = {
owner: THIS_MODULE,
name: "FTDI 8U232AM",
id_table: id_table_8U232AM,
num_interrupt_in: 0,
......
......@@ -798,6 +798,7 @@ static void keyspan_pda_shutdown (struct usb_serial *serial)
#ifdef KEYSPAN
static struct usb_serial_device_type keyspan_pda_fake_device = {
owner: THIS_MODULE,
name: "Keyspan PDA - (prerenumeration)",
id_table: id_table_fake,
num_interrupt_in: NUM_DONT_CARE,
......@@ -810,17 +811,19 @@ static struct usb_serial_device_type keyspan_pda_fake_device = {
#ifdef XIRCOM
static struct usb_serial_device_type xircom_pgs_fake_device = {
name: "Xircom / Entregra PGS - (prerenumeration)",
id_table: id_table_fake_xircom,
num_interrupt_in: NUM_DONT_CARE,
num_bulk_in: NUM_DONT_CARE,
num_bulk_out: NUM_DONT_CARE,
num_ports: 1,
startup: keyspan_pda_fake_startup,
owner: THIS_MODULE,
name: "Xircom / Entregra PGS - (prerenumeration)",
id_table: id_table_fake_xircom,
num_interrupt_in: NUM_DONT_CARE,
num_bulk_in: NUM_DONT_CARE,
num_bulk_out: NUM_DONT_CARE,
num_ports: 1,
startup: keyspan_pda_fake_startup,
};
#endif
static struct usb_serial_device_type keyspan_pda_device = {
owner: THIS_MODULE,
name: "Keyspan PDA",
id_table: id_table_std,
num_interrupt_in: 1,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment