diff options
author | Dave Jiang <dave.jiang@intel.com> | 2011-03-27 00:11:51 +0100 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2011-07-03 13:00:36 +0200 |
commit | 09d7da135b34bc74a7996b5db373521557ddf3d4 (patch) | |
tree | 64b66ecb731cd0e609ef3fcb1fd4d460513aaa89 /drivers/scsi/isci/port.h | |
parent | isci: fix a build warning (diff) | |
download | linux-09d7da135b34bc74a7996b5db373521557ddf3d4.tar.xz linux-09d7da135b34bc74a7996b5db373521557ddf3d4.zip |
isci: Remove event_* calls as they are just wrappers
Removed isci_event_* calls and call those functions directly.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/scsi/isci/port.h')
-rw-r--r-- | drivers/scsi/isci/port.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/scsi/isci/port.h b/drivers/scsi/isci/port.h index b7a7dd7dca69..dfdd12a0f68e 100644 --- a/drivers/scsi/isci/port.h +++ b/drivers/scsi/isci/port.h @@ -147,5 +147,15 @@ int isci_port_perform_hard_reset( struct isci_port *isci_port_ptr, struct isci_phy *isci_phy_ptr); +void isci_port_invalid_link_up( + struct scic_sds_controller *scic, + struct scic_sds_port *sci_port, + struct scic_sds_phy *phy); + +void isci_port_stop_complete( + struct scic_sds_controller *scic, + struct scic_sds_port *sci_port, + enum sci_status completion_status); + #endif /* !defined(_ISCI_PORT_H_) */ |