aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/message/fusion/mptbase.h
diff options
context:
space:
mode:
authorMatthias Kaehlcke <matthias@kaehlcke.net>2008-03-09 07:16:27 -0400
committerJames Bottomley <James.Bottomley@HansenPartnership.com>2008-04-07 13:15:44 -0400
commited5f606fef22e515331aab4c1f927775cf4af70e (patch)
tree26a86b0d7a7bb2e13b478fbd1f247ad2baab27b4 /drivers/message/fusion/mptbase.h
parent23a274c8a5adafc74a66f16988776fc7dd6f6e51 (diff)
[SCSI] mpt fusion: convert inactive_list_mutex to a mutex
the semaphore inactive_list_mutex is used as a mutex, convert it to the mutex API Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net> Acked-by: "Moore, Eric" <Eric.Moore@lsi.com> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/message/fusion/mptbase.h')
-rw-r--r--drivers/message/fusion/mptbase.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/message/fusion/mptbase.h b/drivers/message/fusion/mptbase.h
index 50c0c173e24e..0041ab3e5e80 100644
--- a/drivers/message/fusion/mptbase.h
+++ b/drivers/message/fusion/mptbase.h
@@ -51,6 +51,7 @@
51 51
52#include <linux/kernel.h> 52#include <linux/kernel.h>
53#include <linux/pci.h> 53#include <linux/pci.h>
54#include <linux/mutex.h>
54 55
55#include "lsi/mpi_type.h" 56#include "lsi/mpi_type.h"
56#include "lsi/mpi.h" /* Fusion MPI(nterface) basic defs */ 57#include "lsi/mpi.h" /* Fusion MPI(nterface) basic defs */
@@ -531,7 +532,7 @@ struct inactive_raid_component_info {
531typedef struct _RaidCfgData { 532typedef struct _RaidCfgData {
532 IOCPage2_t *pIocPg2; /* table of Raid Volumes */ 533 IOCPage2_t *pIocPg2; /* table of Raid Volumes */
533 IOCPage3_t *pIocPg3; /* table of physical disks */ 534 IOCPage3_t *pIocPg3; /* table of physical disks */
534 struct semaphore inactive_list_mutex; 535 struct mutex inactive_list_mutex;
535 struct list_head inactive_list; /* link list for physical 536 struct list_head inactive_list; /* link list for physical
536 disk that belong in 537 disk that belong in
537 inactive volumes */ 538 inactive volumes */