diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2006-07-23 16:10:00 -0400 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2006-09-17 13:29:01 -0400 |
commit | 28212767e58402ea362edcb80b753d49bfd44d98 (patch) | |
tree | a8428f807aae7dde68a43c36ea7845d3844aea6a /drivers/ieee1394 | |
parent | cc078189125db84a85a3bbb82df788b84fc68aa1 (diff) |
ieee1394: sbp2: discard return value of sbp2_link_orb_command
Since sbp2 is at the moment unable to do anything with the return value
of sbp2_link_orb_command, just discard it.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/ieee1394')
-rw-r--r-- | drivers/ieee1394/sbp2.c | 8 | ||||
-rw-r--r-- | drivers/ieee1394/sbp2.h | 5 |
2 files changed, 3 insertions, 10 deletions
diff --git a/drivers/ieee1394/sbp2.c b/drivers/ieee1394/sbp2.c index e312d5e2a647..670a13981fd0 100644 --- a/drivers/ieee1394/sbp2.c +++ b/drivers/ieee1394/sbp2.c | |||
@@ -1964,7 +1964,7 @@ static void sbp2_create_command_orb(struct scsi_id_instance_data *scsi_id, | |||
1964 | /* | 1964 | /* |
1965 | * This function is called in order to begin a regular SBP-2 command. | 1965 | * This function is called in order to begin a regular SBP-2 command. |
1966 | */ | 1966 | */ |
1967 | static int sbp2_link_orb_command(struct scsi_id_instance_data *scsi_id, | 1967 | static void sbp2_link_orb_command(struct scsi_id_instance_data *scsi_id, |
1968 | struct sbp2_command_info *command) | 1968 | struct sbp2_command_info *command) |
1969 | { | 1969 | { |
1970 | struct sbp2scsi_host_info *hi = scsi_id->hi; | 1970 | struct sbp2scsi_host_info *hi = scsi_id->hi; |
@@ -2030,11 +2030,9 @@ static int sbp2_link_orb_command(struct scsi_id_instance_data *scsi_id, | |||
2030 | 2030 | ||
2031 | SBP2_ORB_DEBUG("write to %s register, command orb %p", | 2031 | SBP2_ORB_DEBUG("write to %s register, command orb %p", |
2032 | last_orb ? "DOORBELL" : "ORB_POINTER", command_orb); | 2032 | last_orb ? "DOORBELL" : "ORB_POINTER", command_orb); |
2033 | if (sbp2util_node_write_no_wait(scsi_id->ne, addr, data, length) < 0) { | 2033 | if (sbp2util_node_write_no_wait(scsi_id->ne, addr, data, length)) |
2034 | SBP2_ERR("sbp2util_node_write_no_wait failed.\n"); | 2034 | SBP2_ERR("sbp2util_node_write_no_wait failed.\n"); |
2035 | return -EIO; | 2035 | /* We rely on SCSI EH to deal with _node_write_ failures. */ |
2036 | } | ||
2037 | return 0; | ||
2038 | } | 2036 | } |
2039 | 2037 | ||
2040 | /* | 2038 | /* |
diff --git a/drivers/ieee1394/sbp2.h b/drivers/ieee1394/sbp2.h index dd80906e8a92..b17016b7cfcf 100644 --- a/drivers/ieee1394/sbp2.h +++ b/drivers/ieee1394/sbp2.h | |||
@@ -390,11 +390,6 @@ static int sbp2_logout_device(struct scsi_id_instance_data *scsi_id); | |||
390 | static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid, int destid, | 390 | static int sbp2_handle_status_write(struct hpsb_host *host, int nodeid, int destid, |
391 | quadlet_t *data, u64 addr, size_t length, u16 flags); | 391 | quadlet_t *data, u64 addr, size_t length, u16 flags); |
392 | static int sbp2_agent_reset(struct scsi_id_instance_data *scsi_id, int wait); | 392 | static int sbp2_agent_reset(struct scsi_id_instance_data *scsi_id, int wait); |
393 | static int sbp2_link_orb_command(struct scsi_id_instance_data *scsi_id, | ||
394 | struct sbp2_command_info *command); | ||
395 | static int sbp2_send_command(struct scsi_id_instance_data *scsi_id, | ||
396 | struct scsi_cmnd *SCpnt, | ||
397 | void (*done)(struct scsi_cmnd *)); | ||
398 | static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status, | 393 | static unsigned int sbp2_status_to_sense_data(unchar *sbp2_status, |
399 | unchar *sense_data); | 394 | unchar *sense_data); |
400 | static void sbp2_parse_unit_directory(struct scsi_id_instance_data *scsi_id, | 395 | static void sbp2_parse_unit_directory(struct scsi_id_instance_data *scsi_id, |