diff options
author | Julian Scheel <julian@jusst.de> | 2005-07-12 16:58:39 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-12 19:01:04 -0400 |
commit | 27b05fd22f8a1f9afd0377817b1811cfc95f8b7b (patch) | |
tree | d04ea4da6cfdafec7beb507c1e321b4edb7db1b3 /drivers/media | |
parent | 8df3d46077e63ab87f954eb6e827689cdfe97155 (diff) |
[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: Patrick Boettcher <pb@linuxtv.org>
Signed-off-by: Julian Scheel <julian@jusst.de>
Signed-off-by: Johannes Stezenbach <js@linuxtv.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/dvb/ttpci/budget-av.c | 2 | ||||
-rw-r--r-- | drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/dvb/ttpci/budget-av.c b/drivers/media/dvb/ttpci/budget-av.c index b65f4b0a481f..9746d2bb916f 100644 --- a/drivers/media/dvb/ttpci/budget-av.c +++ b/drivers/media/dvb/ttpci/budget-av.c | |||
@@ -1022,7 +1022,7 @@ static struct pci_device_id pci_tbl[] = { | |||
1022 | MODULE_DEVICE_TABLE(pci, pci_tbl); | 1022 | MODULE_DEVICE_TABLE(pci, pci_tbl); |
1023 | 1023 | ||
1024 | static struct saa7146_extension budget_extension = { | 1024 | static struct saa7146_extension budget_extension = { |
1025 | .name = "budget dvb /w video in\0", | 1025 | .name = "budget_av", |
1026 | .pci_tbl = pci_tbl, | 1026 | .pci_tbl = pci_tbl, |
1027 | 1027 | ||
1028 | .module = THIS_MODULE, | 1028 | .module = THIS_MODULE, |
diff --git a/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c b/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c index 2c17a5f58340..aa43b5fcb8e7 100644 --- a/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c +++ b/drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c | |||
@@ -1626,7 +1626,7 @@ static struct usb_device_id ttusb_table[] = { | |||
1626 | MODULE_DEVICE_TABLE(usb, ttusb_table); | 1626 | MODULE_DEVICE_TABLE(usb, ttusb_table); |
1627 | 1627 | ||
1628 | static struct usb_driver ttusb_driver = { | 1628 | static struct usb_driver ttusb_driver = { |
1629 | .name = "Technotrend/Hauppauge USB-Nova", | 1629 | .name = "ttusb", |
1630 | .probe = ttusb_probe, | 1630 | .probe = ttusb_probe, |
1631 | .disconnect = ttusb_disconnect, | 1631 | .disconnect = ttusb_disconnect, |
1632 | .id_table = ttusb_table, | 1632 | .id_table = ttusb_table, |