aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rt3090/pci_main_dev.c
diff options
context:
space:
mode:
authorAxel K <rain_maker@root-forum.org>2009-09-03 21:24:19 +0200
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-15 12:02:34 -0700
commit7dbefe3d581b6283c2ba70b292b450d3e2631f42 (patch)
tree007dc758f37c78483087899803f4874858167ac3 /drivers/staging/rt3090/pci_main_dev.c
parentStaging: rt2860/rt2870/rt3070/rt3090: fix compiler warning on x86_64 (diff)
downloadlinux-dev-7dbefe3d581b6283c2ba70b292b450d3e2631f42.tar.xz
linux-dev-7dbefe3d581b6283c2ba70b292b450d3e2631f42.zip
Staging: rt3090: remove possible conflict with rt2860
Both drivers (rt2860 and rt3090) register themselves as "rt2860" on loading the module. In the very rare case of somebody having two cards in his machine, one using rt3090 and the other one using the rt2860 driver, loading both modules would be impossible, the second one will not be loaded as the kernel will tell you that the driver is already registered. This was also present with rt2870/rt3070 (with both driver registering as "rt2870"), but the code has been merged to one driver recently. The follwoing patch fixes this potential problem until merging of rt2860/rt3090 code to a single driver. Signed-off-by: Axel Koellhofer <rain_maker@root-forum.org> Acked-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to '')
-rw-r--r--drivers/staging/rt3090/pci_main_dev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rt3090/pci_main_dev.c b/drivers/staging/rt3090/pci_main_dev.c
index 4997d3a2311c..1410156b90c6 100644
--- a/drivers/staging/rt3090/pci_main_dev.c
+++ b/drivers/staging/rt3090/pci_main_dev.c
@@ -106,7 +106,7 @@ MODULE_VERSION(STA_DRIVER_VERSION);
//
static struct pci_driver rt2860_driver =
{
- name: "rt2860",
+ name: "rt3090",
id_table: rt2860_pci_tbl,
probe: rt2860_probe,
#if LINUX_VERSION_CODE >= 0x20412
@@ -326,9 +326,9 @@ static INT __devinit rt2860_probe(
}
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)
- print_name = pci_dev ? pci_name(pci_dev) : "rt2860";
+ print_name = pci_dev ? pci_name(pci_dev) : "rt3090";
#else
- print_name = pci_dev ? pci_dev->slot_name : "rt2860";
+ print_name = pci_dev ? pci_dev->slot_name : "rt3090";
#endif // LINUX_VERSION_CODE //
if ((rv = pci_request_regions(pci_dev, print_name)) != 0)