Skip to content

Commit 7de106b

Browse files
committed
Merge tag 'usb-serial-6.12-rc1' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-next
Johan writes: USB-serial updates for 6.12-rc1 Here are the USB-serial updates for 6.12-rc1, including: - fix kobil_sct initial terminal settings - set driver owner when registering drivers All have been in linux-next with no reported issues. * tag 'usb-serial-6.12-rc1' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial: USB: serial: kobil_sct: restore initial terminal settings USB: serial: drop driver owner initialization USB: serial: set driver owner when registering drivers
2 parents 761fd87 + 4c0d947 commit 7de106b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+13
-78
lines changed

drivers/usb/serial/aircable.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ static void aircable_process_read_urb(struct urb *urb)
138138

139139
static struct usb_serial_driver aircable_device = {
140140
.driver = {
141-
.owner = THIS_MODULE,
142141
.name = "aircable",
143142
},
144143
.id_table = id_table,

drivers/usb/serial/ark3116.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,6 @@ static void ark3116_process_read_urb(struct urb *urb)
599599

600600
static struct usb_serial_driver ark3116_device = {
601601
.driver = {
602-
.owner = THIS_MODULE,
603602
.name = "ark3116",
604603
},
605604
.id_table = id_table,

drivers/usb/serial/belkin_sa.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ MODULE_DEVICE_TABLE(usb, id_table);
6666
/* All of the device info needed for the serial converters */
6767
static struct usb_serial_driver belkin_device = {
6868
.driver = {
69-
.owner = THIS_MODULE,
7069
.name = "belkin",
7170
},
7271
.description = "Belkin / Peracom / GoHubs USB Serial Adapter",

drivers/usb/serial/ch341.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,6 @@ static int ch341_reset_resume(struct usb_serial *serial)
837837

838838
static struct usb_serial_driver ch341_device = {
839839
.driver = {
840-
.owner = THIS_MODULE,
841840
.name = "ch341-uart",
842841
},
843842
.id_table = id_table,

drivers/usb/serial/cp210x.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,6 @@ struct cp210x_port_private {
299299

300300
static struct usb_serial_driver cp210x_device = {
301301
.driver = {
302-
.owner = THIS_MODULE,
303302
.name = "cp210x",
304303
},
305304
.id_table = id_table,

drivers/usb/serial/cyberjack.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ MODULE_DEVICE_TABLE(usb, id_table);
6767

6868
static struct usb_serial_driver cyberjack_device = {
6969
.driver = {
70-
.owner = THIS_MODULE,
7170
.name = "cyberjack",
7271
},
7372
.description = "Reiner SCT Cyberjack USB card reader",

drivers/usb/serial/cypress_m8.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ static void cypress_write_int_callback(struct urb *urb);
139139

140140
static struct usb_serial_driver cypress_earthmate_device = {
141141
.driver = {
142-
.owner = THIS_MODULE,
143142
.name = "earthmate",
144143
},
145144
.description = "DeLorme Earthmate USB",
@@ -166,7 +165,6 @@ static struct usb_serial_driver cypress_earthmate_device = {
166165

167166
static struct usb_serial_driver cypress_hidcom_device = {
168167
.driver = {
169-
.owner = THIS_MODULE,
170168
.name = "cyphidcom",
171169
},
172170
.description = "HID->COM RS232 Adapter",
@@ -192,7 +190,6 @@ static struct usb_serial_driver cypress_hidcom_device = {
192190

193191
static struct usb_serial_driver cypress_ca42v2_device = {
194192
.driver = {
195-
.owner = THIS_MODULE,
196193
.name = "nokiaca42v2",
197194
},
198195
.description = "Nokia CA-42 V2 Adapter",

drivers/usb/serial/digi_acceleport.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,6 @@ MODULE_DEVICE_TABLE(usb, id_table_combined);
262262

263263
static struct usb_serial_driver digi_acceleport_2_device = {
264264
.driver = {
265-
.owner = THIS_MODULE,
266265
.name = "digi_2",
267266
},
268267
.description = "Digi 2 port USB adapter",
@@ -293,7 +292,6 @@ static struct usb_serial_driver digi_acceleport_2_device = {
293292

294293
static struct usb_serial_driver digi_acceleport_4_device = {
295294
.driver = {
296-
.owner = THIS_MODULE,
297295
.name = "digi_4",
298296
},
299297
.description = "Digi 4 port USB adapter",

drivers/usb/serial/empeg.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ MODULE_DEVICE_TABLE(usb, id_table);
4343

4444
static struct usb_serial_driver empeg_device = {
4545
.driver = {
46-
.owner = THIS_MODULE,
4746
.name = "empeg",
4847
},
4948
.id_table = id_table,

drivers/usb/serial/f81232.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,6 @@ static int f81232_resume(struct usb_serial *serial)
967967

968968
static struct usb_serial_driver f81232_device = {
969969
.driver = {
970-
.owner = THIS_MODULE,
971970
.name = "f81232",
972971
},
973972
.id_table = f81232_id_table,
@@ -994,7 +993,6 @@ static struct usb_serial_driver f81232_device = {
994993

995994
static struct usb_serial_driver f81534a_device = {
996995
.driver = {
997-
.owner = THIS_MODULE,
998996
.name = "f81534a",
999997
},
1000998
.id_table = f81534a_id_table,

0 commit comments

Comments
 (0)