diff options
author | Dan Williams <dan.j.williams@intel.com> | 2011-06-30 22:14:33 -0400 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2011-07-03 07:04:52 -0400 |
commit | 89a7301f21fb00e753089671eb9e4132aab8ea08 (patch) | |
tree | afa8bac0a36d0d5626997d8995f6c9194aef3a0f /drivers/scsi/isci/isci.h | |
parent | d9dcb4ba791de2a06b19ac47cd61601cf3d4e208 (diff) |
isci: retire scic_sds_ and scic_ prefixes
The distinction between scic_sds_ scic_ and sci_ are no longer relevant
so just unify the prefixes on sci_. The distinction between isci_ and
sci_ is historically significant, and useful for comparing the old
'core' to the current Linux driver. 'sci_' represents the former core as
well as the routines that are closer to the hardware and protocol than
their 'isci_' brethren. sci == sas controller interface.
Also unwind the 'sds1' out of the parameter structs.
Reported-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/scsi/isci/isci.h')
-rw-r--r-- | drivers/scsi/isci/isci.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/isci/isci.h b/drivers/scsi/isci/isci.h index 207328369edd..3afccfcb94e1 100644 --- a/drivers/scsi/isci/isci.h +++ b/drivers/scsi/isci/isci.h | |||
@@ -304,7 +304,7 @@ enum sci_status { | |||
304 | * This member indicates that the operation failed, the failure is | 304 | * This member indicates that the operation failed, the failure is |
305 | * controller implementation specific, and the response data associated | 305 | * controller implementation specific, and the response data associated |
306 | * with the request is not valid. You can query for the controller | 306 | * with the request is not valid. You can query for the controller |
307 | * specific error information via scic_controller_get_request_status() | 307 | * specific error information via sci_controller_get_request_status() |
308 | */ | 308 | */ |
309 | SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR, | 309 | SCI_FAILURE_CONTROLLER_SPECIFIC_IO_ERR, |
310 | 310 | ||
@@ -395,7 +395,7 @@ enum sci_status { | |||
395 | /** | 395 | /** |
396 | * This value indicates that an unsupported PCI device ID has been | 396 | * This value indicates that an unsupported PCI device ID has been |
397 | * specified. This indicates that attempts to invoke | 397 | * specified. This indicates that attempts to invoke |
398 | * scic_library_allocate_controller() will fail. | 398 | * sci_library_allocate_controller() will fail. |
399 | */ | 399 | */ |
400 | SCI_FAILURE_UNSUPPORTED_PCI_DEVICE_ID | 400 | SCI_FAILURE_UNSUPPORTED_PCI_DEVICE_ID |
401 | 401 | ||
@@ -493,7 +493,7 @@ irqreturn_t isci_error_isr(int vec, void *data); | |||
493 | /* | 493 | /* |
494 | * Each timer is associated with a cancellation flag that is set when | 494 | * Each timer is associated with a cancellation flag that is set when |
495 | * del_timer() is called and checked in the timer callback function. This | 495 | * del_timer() is called and checked in the timer callback function. This |
496 | * is needed since del_timer_sync() cannot be called with scic_lock held. | 496 | * is needed since del_timer_sync() cannot be called with sci_lock held. |
497 | * For deinit however, del_timer_sync() is used without holding the lock. | 497 | * For deinit however, del_timer_sync() is used without holding the lock. |
498 | */ | 498 | */ |
499 | struct sci_timer { | 499 | struct sci_timer { |