diff options
Diffstat (limited to 'drivers/usb/serial/cypress_m8.c')
-rw-r--r-- | drivers/usb/serial/cypress_m8.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/usb/serial/cypress_m8.c b/drivers/usb/serial/cypress_m8.c index 4fb8e59d1527..b4069af4d565 100644 --- a/drivers/usb/serial/cypress_m8.c +++ b/drivers/usb/serial/cypress_m8.c | |||
@@ -177,7 +177,9 @@ static unsigned int cypress_buf_get(struct cypress_buf *cb, char *buf, unsigne | |||
177 | 177 | ||
178 | 178 | ||
179 | static struct usb_serial_driver cypress_earthmate_device = { | 179 | static struct usb_serial_driver cypress_earthmate_device = { |
180 | .owner = THIS_MODULE, | 180 | .driver = { |
181 | .owner = THIS_MODULE, | ||
182 | }, | ||
181 | .name = "DeLorme Earthmate USB", | 183 | .name = "DeLorme Earthmate USB", |
182 | .short_name = "earthmate", | 184 | .short_name = "earthmate", |
183 | .id_table = id_table_earthmate, | 185 | .id_table = id_table_earthmate, |
@@ -204,7 +206,9 @@ static struct usb_serial_driver cypress_earthmate_device = { | |||
204 | }; | 206 | }; |
205 | 207 | ||
206 | static struct usb_serial_driver cypress_hidcom_device = { | 208 | static struct usb_serial_driver cypress_hidcom_device = { |
207 | .owner = THIS_MODULE, | 209 | .driver = { |
210 | .owner = THIS_MODULE, | ||
211 | }, | ||
208 | .name = "HID->COM RS232 Adapter", | 212 | .name = "HID->COM RS232 Adapter", |
209 | .short_name = "cyphidcom", | 213 | .short_name = "cyphidcom", |
210 | .id_table = id_table_cyphidcomrs232, | 214 | .id_table = id_table_cyphidcomrs232, |