Skip to content

Commit

Permalink
firewire: core: Update WARN uses
Browse files Browse the repository at this point in the history
Add missing newlines.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
  • Loading branch information
Joe Perches authored and Stefan Richter committed Dec 12, 2010
1 parent 60a74a6 commit 5878730
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/firewire/core-transaction.c
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ static void fw_fill_request(struct fw_packet *packet, int tcode, int tlabel,
break;

default:
WARN(1, "wrong tcode %d", tcode);
WARN(1, "wrong tcode %d\n", tcode);
}
common:
packet->speed = speed;
Expand Down Expand Up @@ -638,7 +638,7 @@ int fw_get_response_length(struct fw_request *r)
}

default:
WARN(1, "wrong tcode %d", tcode);
WARN(1, "wrong tcode %d\n", tcode);
return 0;
}
}
Expand Down Expand Up @@ -694,7 +694,7 @@ void fw_fill_response(struct fw_packet *response, u32 *request_header,
break;

default:
WARN(1, "wrong tcode %d", tcode);
WARN(1, "wrong tcode %d\n", tcode);
}

response->payload_mapped = false;
Expand Down

0 comments on commit 5878730

Please sign in to comment.