Commit 27b05fd2 authored by Julian Scheel's avatar Julian Scheel Committed by Linus Torvalds

[PATCH] dvb: fix kobject names (no slashes)

The / in the driver name (budget dvb /w video in) is not a valid character for
device names - removed it, now it works!

Same for ttusb-budget.
Signed-off-by: default avatarPatrick Boettcher <pb@linuxtv.org>
Signed-off-by: default avatarJulian Scheel <julian@jusst.de>
Signed-off-by: default avatarJohannes Stezenbach <js@linuxtv.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 8df3d460
...@@ -1022,7 +1022,7 @@ static struct pci_device_id pci_tbl[] = { ...@@ -1022,7 +1022,7 @@ static struct pci_device_id pci_tbl[] = {
MODULE_DEVICE_TABLE(pci, pci_tbl); MODULE_DEVICE_TABLE(pci, pci_tbl);
static struct saa7146_extension budget_extension = { static struct saa7146_extension budget_extension = {
.name = "budget dvb /w video in\0", .name = "budget_av",
.pci_tbl = pci_tbl, .pci_tbl = pci_tbl,
.module = THIS_MODULE, .module = THIS_MODULE,
......
...@@ -1626,7 +1626,7 @@ static struct usb_device_id ttusb_table[] = { ...@@ -1626,7 +1626,7 @@ static struct usb_device_id ttusb_table[] = {
MODULE_DEVICE_TABLE(usb, ttusb_table); MODULE_DEVICE_TABLE(usb, ttusb_table);
static struct usb_driver ttusb_driver = { static struct usb_driver ttusb_driver = {
.name = "Technotrend/Hauppauge USB-Nova", .name = "ttusb",
.probe = ttusb_probe, .probe = ttusb_probe,
.disconnect = ttusb_disconnect, .disconnect = ttusb_disconnect,
.id_table = ttusb_table, .id_table = ttusb_table,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment