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/whiteheat.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/whiteheat.c')
-rw-r--r-- | drivers/usb/serial/whiteheat.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/usb/serial/whiteheat.c b/drivers/usb/serial/whiteheat.c index dc06664bfa0e..fb95a34a1cf7 100644 --- a/drivers/usb/serial/whiteheat.c +++ b/drivers/usb/serial/whiteheat.c | |||
@@ -157,7 +157,9 @@ static void whiteheat_read_callback (struct urb *urb, struct pt_regs *regs); | |||
157 | static void whiteheat_write_callback (struct urb *urb, struct pt_regs *regs); | 157 | static void whiteheat_write_callback (struct urb *urb, struct pt_regs *regs); |
158 | 158 | ||
159 | static struct usb_serial_driver whiteheat_fake_device = { | 159 | static struct usb_serial_driver whiteheat_fake_device = { |
160 | .owner = THIS_MODULE, | 160 | .driver = { |
161 | .owner = THIS_MODULE, | ||
162 | }, | ||
161 | .name = "Connect Tech - WhiteHEAT - (prerenumeration)", | 163 | .name = "Connect Tech - WhiteHEAT - (prerenumeration)", |
162 | .short_name = "whiteheatnofirm", | 164 | .short_name = "whiteheatnofirm", |
163 | .id_table = id_table_prerenumeration, | 165 | .id_table = id_table_prerenumeration, |
@@ -170,7 +172,9 @@ static struct usb_serial_driver whiteheat_fake_device = { | |||
170 | }; | 172 | }; |
171 | 173 | ||
172 | static struct usb_serial_driver whiteheat_device = { | 174 | static struct usb_serial_driver whiteheat_device = { |
173 | .owner = THIS_MODULE, | 175 | .driver = { |
176 | .owner = THIS_MODULE, | ||
177 | }, | ||
174 | .name = "Connect Tech - WhiteHEAT", | 178 | .name = "Connect Tech - WhiteHEAT", |
175 | .short_name = "whiteheat", | 179 | .short_name = "whiteheat", |
176 | .id_table = id_table_std, | 180 | .id_table = id_table_std, |