Skip to content

Commit 2ba5389

Browse files
tititiou36kuba-moo
authored andcommitted
soc: qcom: ipa: Add a missing '\n' in a log message
Message logged by 'dev_xxx()' or 'pr_xxx()' should end with a '\n'. Fixes: a646d6e ("soc: qcom: ipa: modem and microcontroller") Signed-off-by: Christophe JAILLET <[email protected]> Signed-off-by: Jakub Kicinski <[email protected]>
1 parent 465aa30 commit 2ba5389

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

drivers/net/ipa/ipa_modem.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,14 +297,13 @@ static void ipa_modem_crashed(struct ipa *ipa)
297297

298298
ret = ipa_endpoint_modem_exception_reset_all(ipa);
299299
if (ret)
300-
dev_err(dev, "error %d resetting exception endpoint",
301-
ret);
300+
dev_err(dev, "error %d resetting exception endpoint\n", ret);
302301

303302
ipa_endpoint_modem_pause_all(ipa, false);
304303

305304
ret = ipa_modem_stop(ipa);
306305
if (ret)
307-
dev_err(dev, "error %d stopping modem", ret);
306+
dev_err(dev, "error %d stopping modem\n", ret);
308307

309308
/* Now prepare for the next modem boot */
310309
ret = ipa_mem_zero_modem(ipa);

0 commit comments

Comments
 (0)