[PATCH 1/1][BUG] undefined symbol in legacy megaraid driver on 2.6.12-mm1

From: Ju, Seokmann
Date: Thu Sep 08 2005 - 14:32:33 EST


Hi,

I've created a patch to address "legacy megaraid driver compilation error on
2.6.12-mm1 kernel.
Please take this patch and let me know for any further concern.

Thank you,

Seokmann

Sign-off by: Seokmann JU <seokmann.ju@xxxxxxxx>
---
diff -Naur old/drivers/scsi/megaraid.c new/drivers/scsi/megaraid.c
--- old/drivers/scsi/megaraid.c 2005-09-08 16:24:12.017451400 -0400
+++ new/drivers/scsi/megaraid.c 2005-09-08 16:23:36.509849376 -0400
@@ -1975,9 +1975,11 @@
static int
megaraid_reset(Scsi_Cmnd *cmd)
{
- adapter = (adapter_t *)cmd->device->host->hostdata;
+ adapter_t *adapter;
int rc;

+ adapter = (adapter_t *)cmd->device->host->hostdata;
+
spin_lock_irq(&adapter->lock);
rc = __megaraid_reset(cmd);
spin_unlock_irq(&adapter->lock);
---
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/