diff options
author | Moore, Eric Dean <Eric.Moore@lsil.com> | 2005-06-24 14:18:57 -0400 |
---|---|---|
committer | James Bottomley <jejb@titanic.(none)> | 2005-07-01 09:56:31 -0400 |
commit | 6e3815ba3a6d392fa9cfbf08208f64c06d9558c4 (patch) | |
tree | 4702625002cb4fd6a0a59112a34b3cc10c8efcc5 /drivers/message/fusion/mptspi.c | |
parent | c0df28cfe012652160a530f9aa74b0a49c77eac5 (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/mptspi.c')
-rw-r--r-- | drivers/message/fusion/mptspi.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/drivers/message/fusion/mptspi.c b/drivers/message/fusion/mptspi.c index d2b53eac9c94..a0a2e0afb21d 100644 --- a/drivers/message/fusion/mptspi.c +++ b/drivers/message/fusion/mptspi.c | |||
@@ -102,19 +102,6 @@ static int mptspiDoneCtx = -1; | |||
102 | static int mptspiTaskCtx = -1; | 102 | static int mptspiTaskCtx = -1; |
103 | static int mptspiInternalCtx = -1; /* Used only for internal commands */ | 103 | static int mptspiInternalCtx = -1; /* Used only for internal commands */ |
104 | 104 | ||
105 | static struct device_attribute mptspi_queue_depth_attr = { | ||
106 | .attr = { | ||
107 | .name = "queue_depth", | ||
108 | .mode = S_IWUSR, | ||
109 | }, | ||
110 | .store = mptscsih_store_queue_depth, | ||
111 | }; | ||
112 | |||
113 | static struct device_attribute *mptspi_dev_attrs[] = { | ||
114 | &mptspi_queue_depth_attr, | ||
115 | NULL, | ||
116 | }; | ||
117 | |||
118 | static struct scsi_host_template mptspi_driver_template = { | 105 | static struct scsi_host_template mptspi_driver_template = { |
119 | .proc_name = "mptspi", | 106 | .proc_name = "mptspi", |
120 | .proc_info = mptscsih_proc_info, | 107 | .proc_info = mptscsih_proc_info, |
@@ -124,6 +111,7 @@ static struct scsi_host_template mptspi_driver_template = { | |||
124 | .slave_alloc = mptscsih_slave_alloc, | 111 | .slave_alloc = mptscsih_slave_alloc, |
125 | .slave_configure = mptscsih_slave_configure, | 112 | .slave_configure = mptscsih_slave_configure, |
126 | .slave_destroy = mptscsih_slave_destroy, | 113 | .slave_destroy = mptscsih_slave_destroy, |
114 | .change_queue_depth = mptscsih_change_queue_depth, | ||
127 | .eh_abort_handler = mptscsih_abort, | 115 | .eh_abort_handler = mptscsih_abort, |
128 | .eh_device_reset_handler = mptscsih_dev_reset, | 116 | .eh_device_reset_handler = mptscsih_dev_reset, |
129 | .eh_bus_reset_handler = mptscsih_bus_reset, | 117 | .eh_bus_reset_handler = mptscsih_bus_reset, |
@@ -135,7 +123,6 @@ static struct scsi_host_template mptspi_driver_template = { | |||
135 | .max_sectors = 8192, | 123 | .max_sectors = 8192, |
136 | .cmd_per_lun = 7, | 124 | .cmd_per_lun = 7, |
137 | .use_clustering = ENABLE_CLUSTERING, | 125 | .use_clustering = ENABLE_CLUSTERING, |
138 | .sdev_attrs = mptspi_dev_attrs, | ||
139 | }; | 126 | }; |
140 | 127 | ||
141 | 128 | ||