aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/serial/whiteheat.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/serial/whiteheat.c')
-rw-r--r--drivers/usb/serial/whiteheat.c8
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);
157static void whiteheat_write_callback (struct urb *urb, struct pt_regs *regs); 157static void whiteheat_write_callback (struct urb *urb, struct pt_regs *regs);
158 158
159static struct usb_serial_driver whiteheat_fake_device = { 159static 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
172static struct usb_serial_driver whiteheat_device = { 174static 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,