diff options
author | Julian Scheel <julian@jusst.de> | 2005-07-12 13:58:39 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-12 16:01:04 -0700 |
commit | 27b05fd22f8a1f9afd0377817b1811cfc95f8b7b (patch) | |
tree | d04ea4da6cfdafec7beb507c1e321b4edb7db1b3 /drivers/media/dvb/ttpci | |
parent | 8df3d46077e63ab87f954eb6e827689cdfe97155 (diff) | |
download | op-kernel-dev-27b05fd22f8a1f9afd0377817b1811cfc95f8b7b.zip op-kernel-dev-27b05fd22f8a1f9afd0377817b1811cfc95f8b7b.tar.gz |
[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/dvb/ttpci')
-rw-r--r-- | drivers/media/dvb/ttpci/budget-av.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/ttpci/budget-av.c b/drivers/media/dvb/ttpci/budget-av.c index b65f4b0..9746d2b 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[] = { MODULE_DEVICE_TABLE(pci, pci_tbl); static struct saa7146_extension budget_extension = { - .name = "budget dvb /w video in\0", + .name = "budget_av", .pci_tbl = pci_tbl, .module = THIS_MODULE, |