Skip to content

Commit

Permalink
[SCSI] megaraid_legacy: kobject_register failure
Browse files Browse the repository at this point in the history
Attached patch fixes problem that cause kobject_register failure
during loading.  Kobject_register would fail when there are more than
1 module with same module name.  This patch will change module name of
megaraid_legacy from 'megaraid' to 'megaraid_legacy'.

Signed-Off-by: Seokmann Ju <seokmann.ju@lsil.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
  • Loading branch information
Ju, Seokmann authored and Unknown committed Feb 12, 2006
1 parent 4733804 commit 3542adc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/scsi/megaraid.c
Original file line number Diff line number Diff line change
Expand Up @@ -5049,7 +5049,7 @@ static struct pci_device_id megaraid_pci_tbl[] = {
MODULE_DEVICE_TABLE(pci, megaraid_pci_tbl);

static struct pci_driver megaraid_pci_driver = {
.name = "megaraid",
.name = "megaraid_legacy",
.id_table = megaraid_pci_tbl,
.probe = megaraid_probe_one,
.remove = __devexit_p(megaraid_remove_one),
Expand Down
2 changes: 1 addition & 1 deletion drivers/scsi/megaraid.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <linux/mutex.h>

#define MEGARAID_VERSION \
"v2.00.3 (Release Date: Wed Feb 19 08:51:30 EST 2003)\n"
"v2.00.4 (Release Date: Thu Feb 9 08:51:30 EST 2006)\n"

/*
* Driver features - change the values to enable or disable features in the
Expand Down

0 comments on commit 3542adc

Please sign in to comment.