Skip to content

Commit

Permalink
isci: Removed sci_base_object from scic_sds_remote_node_context.
Browse files Browse the repository at this point in the history
The 'struct sci_base_object' was removed from the struct
scic_sds_remote_node_context.

Signed-off-by: Maciej Patelczyk <maciej.patelczyk@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
  • Loading branch information
Maciej Patelczyk authored and Dan Williams committed Jul 3, 2011
1 parent 5d937e9 commit af23e85
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 31 deletions.
2 changes: 0 additions & 2 deletions drivers/scsi/isci/remote_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -1386,8 +1386,6 @@ static void scic_remote_device_construct(struct scic_sds_port *sci_port,

scic_sds_remote_node_context_construct(&sci_dev->rnc,
SCIC_SDS_REMOTE_NODE_CONTEXT_INVALID_INDEX);

sci_object_set_association(&sci_dev->rnc, sci_dev);
}

/**
Expand Down
33 changes: 9 additions & 24 deletions drivers/scsi/isci/remote_node_context.c
Original file line number Diff line number Diff line change
Expand Up @@ -972,9 +972,7 @@ static void scic_sds_remote_node_context_invalidate_context_buffer(
*/
static void scic_sds_remote_node_context_initial_state_enter(void *object)
{
struct scic_sds_remote_node_context *rnc;

rnc = (struct scic_sds_remote_node_context *)object;
struct scic_sds_remote_node_context *rnc = object;

SET_STATE_HANDLER(
rnc,
Expand Down Expand Up @@ -1002,9 +1000,7 @@ static void scic_sds_remote_node_context_initial_state_enter(void *object)
*/
static void scic_sds_remote_node_context_posting_state_enter(void *object)
{
struct scic_sds_remote_node_context *sci_rnc;

sci_rnc = (struct scic_sds_remote_node_context *)object;
struct scic_sds_remote_node_context *sci_rnc = object;

SET_STATE_HANDLER(
sci_rnc,
Expand All @@ -1022,9 +1018,7 @@ static void scic_sds_remote_node_context_posting_state_enter(void *object)
*/
static void scic_sds_remote_node_context_invalidating_state_enter(void *object)
{
struct scic_sds_remote_node_context *rnc;

rnc = (struct scic_sds_remote_node_context *)object;
struct scic_sds_remote_node_context *rnc = object;

SET_STATE_HANDLER(
rnc,
Expand All @@ -1042,11 +1036,10 @@ static void scic_sds_remote_node_context_invalidating_state_enter(void *object)
*/
static void scic_sds_remote_node_context_resuming_state_enter(void *object)
{
struct scic_sds_remote_node_context *rnc;
struct scic_sds_remote_node_context *rnc = object;
struct scic_sds_remote_device *sci_dev;
struct domain_device *dev;

rnc = (struct scic_sds_remote_node_context *)object;
sci_dev = rnc_to_dev(rnc);
dev = sci_dev_to_domain(sci_dev);

Expand Down Expand Up @@ -1077,9 +1070,7 @@ static void scic_sds_remote_node_context_resuming_state_enter(void *object)
*/
static void scic_sds_remote_node_context_ready_state_enter(void *object)
{
struct scic_sds_remote_node_context *rnc;

rnc = (struct scic_sds_remote_node_context *)object;
struct scic_sds_remote_node_context *rnc = object;

SET_STATE_HANDLER(
rnc,
Expand All @@ -1101,9 +1092,7 @@ static void scic_sds_remote_node_context_ready_state_enter(void *object)
*/
static void scic_sds_remote_node_context_tx_suspended_state_enter(void *object)
{
struct scic_sds_remote_node_context *rnc;

rnc = (struct scic_sds_remote_node_context *)object;
struct scic_sds_remote_node_context *rnc = object;

SET_STATE_HANDLER(
rnc,
Expand All @@ -1122,9 +1111,7 @@ static void scic_sds_remote_node_context_tx_suspended_state_enter(void *object)
static void scic_sds_remote_node_context_tx_rx_suspended_state_enter(
void *object)
{
struct scic_sds_remote_node_context *rnc;

rnc = (struct scic_sds_remote_node_context *)object;
struct scic_sds_remote_node_context *rnc = object;

SET_STATE_HANDLER(
rnc,
Expand All @@ -1143,9 +1130,7 @@ static void scic_sds_remote_node_context_tx_rx_suspended_state_enter(
static void scic_sds_remote_node_context_await_suspension_state_enter(
void *object)
{
struct scic_sds_remote_node_context *rnc;

rnc = (struct scic_sds_remote_node_context *)object;
struct scic_sds_remote_node_context *rnc = object;

SET_STATE_HANDLER(
rnc,
Expand Down Expand Up @@ -1193,7 +1178,7 @@ void scic_sds_remote_node_context_construct(struct scic_sds_remote_node_context

sci_base_state_machine_construct(
&rnc->state_machine,
&rnc->parent,
rnc,
scic_sds_remote_node_context_state_table,
SCIC_SDS_REMOTE_NODE_CONTEXT_INITIAL_STATE
);
Expand Down
5 changes: 0 additions & 5 deletions drivers/scsi/isci/remote_node_context.h
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,6 @@ enum scic_sds_remote_node_context_destination_state {
* the silicon RNC.
*/
struct scic_sds_remote_node_context {
/*
* parent object
*/
struct sci_base_object parent;

/**
* This field indicates the remote node index (RNI) associated with
* this RNC.
Expand Down

0 comments on commit af23e85

Please sign in to comment.