diff options
author | Patrick Boettcher <devnull@localhost> | 2005-06-28 21:48:07 +0000 |
---|---|---|
committer | Patrick Boettcher <devnull@localhost> | 2005-06-28 21:48:07 +0000 |
commit | 1ef3ff94294f739f71fdad2b1e41e089b09a0508 (patch) | |
tree | ce6a4e42478bf6832b4d337ca13abea16fe14fa2 /linux/drivers/media/dvb/b2c2/flexcop-pci.c | |
parent | ba1653056e9ae56393fe9b4a037ba0cced6d1655 (diff) | |
download | mediapointer-dvb-s2-1ef3ff94294f739f71fdad2b1e41e089b09a0508.tar.gz mediapointer-dvb-s2-1ef3ff94294f739f71fdad2b1e41e089b09a0508.tar.bz2 |
Changed the name-field of the pci_driver and usb_driver structs to the name of
the module after compilation. It seems that this field is used in some places
where special characters are not allowed.
Maybe related to: http://www.uwsg.iu.edu/hypermail/linux/kernel/0505.1/0983.html
Thanks to Alan Halverson for finding this problem.
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/b2c2/flexcop-pci.c')
-rw-r--r-- | linux/drivers/media/dvb/b2c2/flexcop-pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/b2c2/flexcop-pci.c b/linux/drivers/media/dvb/b2c2/flexcop-pci.c index a436d5584..2f76eb3fe 100644 --- a/linux/drivers/media/dvb/b2c2/flexcop-pci.c +++ b/linux/drivers/media/dvb/b2c2/flexcop-pci.c @@ -409,7 +409,7 @@ static struct pci_device_id flexcop_pci_tbl[] = { MODULE_DEVICE_TABLE(pci, flexcop_pci_tbl); static struct pci_driver flexcop_pci_driver = { - .name = "Technisat/B2C2 FlexCop II/IIb PCI", + .name = "b2c2_flexcop_pci", .id_table = flexcop_pci_tbl, .probe = flexcop_pci_probe, .remove = flexcop_pci_remove, |