summaryrefslogtreecommitdiffstats
path: root/drivers/scsi/isci/port.h
diff options
context:
space:
mode:
authorPiotr Sawicki <piotr.sawicki@intel.com>2011-05-12 19:10:03 +0000
committerDan Williams <dan.j.williams@intel.com>2011-07-03 04:04:49 -0700
commitbd6713b416bbfc7d7180114f7cc543b152cc1725 (patch)
tree46c758cf86fe4068a2b2aa9322a395b138a1afb6 /drivers/scsi/isci/port.h
parente6ec5afde9794f50e60788bd10760fcd0d609252 (diff)
downloadlinux-bd6713b416bbfc7d7180114f7cc543b152cc1725.tar.bz2
isci: unify port reset, add_phy, and remove_phy handlers
Unify the implementations and remove the state handlers. Reported-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Piotr Sawicki <piotr.sawicki@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.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/drivers/scsi/isci/port.h b/drivers/scsi/isci/port.h
index 70163710988c..326279a194ab 100644
--- a/drivers/scsi/isci/port.h
+++ b/drivers/scsi/isci/port.h
@@ -312,24 +312,6 @@ typedef enum sci_status (*scic_sds_port_io_request_handler_t)(struct scic_sds_po
struct scic_sds_request *);
struct scic_sds_port_state_handler {
- /**
- * The reset_handler specifies the method invoked when a user
- * attempts to hard reset a port.
- */
- scic_sds_port_reset_handler_t reset_handler;
-
- /**
- * The add_phy_handler specifies the method invoked when a user
- * attempts to add another phy into the port.
- */
- scic_sds_port_phy_handler_t add_phy_handler;
-
- /**
- * The remove_phy_handler specifies the method invoked when a user
- * attempts to remove a phy from the port.
- */
- scic_sds_port_phy_handler_t remove_phy_handler;
-
scic_sds_port_frame_handler_t frame_handler;
scic_sds_port_event_handler_t event_handler;
@@ -338,7 +320,6 @@ struct scic_sds_port_state_handler {
scic_sds_port_io_request_handler_t start_io_handler;
scic_sds_port_io_request_handler_t complete_io_handler;
-
};
/**