diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2005-06-21 00:15:16 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-10-28 19:47:48 -0400 |
commit | 18fcac353fdc7cd072b0d24c8667042e675a4c11 (patch) | |
tree | 7cbbcfccf999193e78ff86d9dc3ff1e41ec3b0bf /drivers/usb/serial/cypress_m8.c | |
parent | ea65370d025f5005649e5cb37c4d025e92c6fc38 (diff) |
[PATCH] USB Serial: get rid of the .owner field in usb_serial_driver
Don't duplicate something that's already in struct driver.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
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, |