firewire: core: Update WARN uses

Add missing newlines.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
This commit is contained in:
Joe Perches 2010-10-30 14:08:27 -07:00 committed by Stefan Richter
parent 60a74a6ff8
commit 5878730be4

View file

@ -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;
@ -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;
}
}
@ -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;