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 = { ...@@ -197,6 +197,7 @@ static struct usb_serial_device_type ftdi_sio_device = {
}; };
static struct usb_serial_device_type ftdi_8U232AM_device = { static struct usb_serial_device_type ftdi_8U232AM_device = {
owner: THIS_MODULE,
name: "FTDI 8U232AM", name: "FTDI 8U232AM",
id_table: id_table_8U232AM, id_table: id_table_8U232AM,
num_interrupt_in: 0, num_interrupt_in: 0,
......
...@@ -798,6 +798,7 @@ static void keyspan_pda_shutdown (struct usb_serial *serial) ...@@ -798,6 +798,7 @@ static void keyspan_pda_shutdown (struct usb_serial *serial)
#ifdef KEYSPAN #ifdef KEYSPAN
static struct usb_serial_device_type keyspan_pda_fake_device = { static struct usb_serial_device_type keyspan_pda_fake_device = {
owner: THIS_MODULE,
name: "Keyspan PDA - (prerenumeration)", name: "Keyspan PDA - (prerenumeration)",
id_table: id_table_fake, id_table: id_table_fake,
num_interrupt_in: NUM_DONT_CARE, num_interrupt_in: NUM_DONT_CARE,
...@@ -810,6 +811,7 @@ static struct usb_serial_device_type keyspan_pda_fake_device = { ...@@ -810,6 +811,7 @@ static struct usb_serial_device_type keyspan_pda_fake_device = {
#ifdef XIRCOM #ifdef XIRCOM
static struct usb_serial_device_type xircom_pgs_fake_device = { static struct usb_serial_device_type xircom_pgs_fake_device = {
owner: THIS_MODULE,
name: "Xircom / Entregra PGS - (prerenumeration)", name: "Xircom / Entregra PGS - (prerenumeration)",
id_table: id_table_fake_xircom, id_table: id_table_fake_xircom,
num_interrupt_in: NUM_DONT_CARE, num_interrupt_in: NUM_DONT_CARE,
...@@ -821,6 +823,7 @@ static struct usb_serial_device_type xircom_pgs_fake_device = { ...@@ -821,6 +823,7 @@ static struct usb_serial_device_type xircom_pgs_fake_device = {
#endif #endif
static struct usb_serial_device_type keyspan_pda_device = { static struct usb_serial_device_type keyspan_pda_device = {
owner: THIS_MODULE,
name: "Keyspan PDA", name: "Keyspan PDA",
id_table: id_table_std, id_table: id_table_std,
num_interrupt_in: 1, 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