aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/firewire/fw-sbp2.c
diff options
context:
space:
mode:
authorStefan Richter <stefanr@s5r6.in-berlin.de>2007-06-09 13:26:22 -0400
committerStefan Richter <stefanr@s5r6.in-berlin.de>2007-07-09 18:07:42 -0400
commit8a8cea2734808522f02941ea16125810ee42c9c7 (patch)
treef1cbb4e92c1a4b55cfd9d82d8a82c24827168717 /drivers/firewire/fw-sbp2.c
parentb8f106570f20a7a98a18a14c2d11d65f581c2808 (diff)
firewire: missing newline in printk
Also remove some errno printouts which will be shown by infrastructure code anyway. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/firewire/fw-sbp2.c')
-rw-r--r--drivers/firewire/fw-sbp2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firewire/fw-sbp2.c b/drivers/firewire/fw-sbp2.c
index 25f2aa430a30..16e942f72e48 100644
--- a/drivers/firewire/fw-sbp2.c
+++ b/drivers/firewire/fw-sbp2.c
@@ -985,7 +985,7 @@ static int sbp2_scsi_queuecommand(struct scsi_cmnd *cmd, scsi_done_fn_t done)
985 * transfer direction not handled. 985 * transfer direction not handled.
986 */ 986 */
987 if (cmd->sc_data_direction == DMA_BIDIRECTIONAL) { 987 if (cmd->sc_data_direction == DMA_BIDIRECTIONAL) {
988 fw_error("Cannot handle DMA_BIDIRECTIONAL - rejecting command"); 988 fw_error("Can't handle DMA_BIDIRECTIONAL, rejecting command\n");
989 cmd->result = DID_ERROR << 16; 989 cmd->result = DID_ERROR << 16;
990 done(cmd); 990 done(cmd);
991 return 0; 991 return 0;