aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/message/fusion/mptfc.c
diff options
context:
space:
mode:
authorMoore, Eric Dean <Eric.Moore@lsil.com>2005-06-24 14:18:57 -0400
committerJames Bottomley <jejb@titanic.(none)>2005-07-01 09:56:31 -0400
commit6e3815ba3a6d392fa9cfbf08208f64c06d9558c4 (patch)
tree4702625002cb4fd6a0a59112a34b3cc10c8efcc5 /drivers/message/fusion/mptfc.c
parentc0df28cfe012652160a530f9aa74b0a49c77eac5 (diff)
[SCSI] - mptfusion - convert to new change_queue_depth API
Convert driver to use new change_queue_depth API. Signed-off-by: Eric Moore <Eric.Moore@lsil.com> Fixed up rejections and Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/message/fusion/mptfc.c')
-rw-r--r--drivers/message/fusion/mptfc.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/drivers/message/fusion/mptfc.c b/drivers/message/fusion/mptfc.c
index 79959562248c..29f66de4e8f1 100644
--- a/drivers/message/fusion/mptfc.c
+++ b/drivers/message/fusion/mptfc.c
@@ -83,19 +83,6 @@ static int mptfcDoneCtx = -1;
83static int mptfcTaskCtx = -1; 83static int mptfcTaskCtx = -1;
84static int mptfcInternalCtx = -1; /* Used only for internal commands */ 84static int mptfcInternalCtx = -1; /* Used only for internal commands */
85 85
86static struct device_attribute mptfc_queue_depth_attr = {
87 .attr = {
88 .name = "queue_depth",
89 .mode = S_IWUSR,
90 },
91 .store = mptscsih_store_queue_depth,
92};
93
94static struct device_attribute *mptfc_dev_attrs[] = {
95 &mptfc_queue_depth_attr,
96 NULL,
97};
98
99static struct scsi_host_template mptfc_driver_template = { 86static struct scsi_host_template mptfc_driver_template = {
100 .proc_name = "mptfc", 87 .proc_name = "mptfc",
101 .proc_info = mptscsih_proc_info, 88 .proc_info = mptscsih_proc_info,
@@ -105,6 +92,7 @@ static struct scsi_host_template mptfc_driver_template = {
105 .slave_alloc = mptscsih_slave_alloc, 92 .slave_alloc = mptscsih_slave_alloc,
106 .slave_configure = mptscsih_slave_configure, 93 .slave_configure = mptscsih_slave_configure,
107 .slave_destroy = mptscsih_slave_destroy, 94 .slave_destroy = mptscsih_slave_destroy,
95 .change_queue_depth = mptscsih_change_queue_depth,
108 .eh_abort_handler = mptscsih_abort, 96 .eh_abort_handler = mptscsih_abort,
109 .eh_device_reset_handler = mptscsih_dev_reset, 97 .eh_device_reset_handler = mptscsih_dev_reset,
110 .eh_bus_reset_handler = mptscsih_bus_reset, 98 .eh_bus_reset_handler = mptscsih_bus_reset,
@@ -116,7 +104,6 @@ static struct scsi_host_template mptfc_driver_template = {
116 .max_sectors = 8192, 104 .max_sectors = 8192,
117 .cmd_per_lun = 7, 105 .cmd_per_lun = 7,
118 .use_clustering = ENABLE_CLUSTERING, 106 .use_clustering = ENABLE_CLUSTERING,
119 .sdev_attrs = mptfc_dev_attrs,
120}; 107};
121 108
122/**************************************************************************** 109/****************************************************************************