Skip to content

Commit

Permalink
net caif: insert missing spaces in pr_* messages and unbreak multi-li…
Browse files Browse the repository at this point in the history
…ne strings

Some of the pr_* messages are missing spaces, so insert these and also
unbreak multi-line literal strings in pr_* messages

Signed-off-by: Colin Ian King <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Colin Ian King authored and davem330 committed Oct 28, 2016
1 parent d5a14ff commit b09edbd
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions net/caif/cfcnfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -390,8 +390,7 @@ cfcnfg_linkup_rsp(struct cflayer *layer, u8 channel_id, enum cfctrl_srv serv,
rcu_read_lock();

if (adapt_layer == NULL) {
pr_debug("link setup response but no client exist,"
"send linkdown back\n");
pr_debug("link setup response but no client exist, send linkdown back\n");
cfctrl_linkdown_req(cnfg->ctrl, channel_id, NULL);
goto unlock;
}
Expand All @@ -401,8 +400,7 @@ cfcnfg_linkup_rsp(struct cflayer *layer, u8 channel_id, enum cfctrl_srv serv,

phyinfo = cfcnfg_get_phyinfo_rcu(cnfg, phyid);
if (phyinfo == NULL) {
pr_err("ERROR: Link Layer Device disappeared"
"while connecting\n");
pr_err("ERROR: Link Layer Device disappeared while connecting\n");
goto unlock;
}

Expand Down Expand Up @@ -436,8 +434,7 @@ cfcnfg_linkup_rsp(struct cflayer *layer, u8 channel_id, enum cfctrl_srv serv,
servicel = cfdbgl_create(channel_id, &phyinfo->dev_info);
break;
default:
pr_err("Protocol error. Link setup response "
"- unknown channel type\n");
pr_err("Protocol error. Link setup response - unknown channel type\n");
goto unlock;
}
if (!servicel)
Expand Down

0 comments on commit b09edbd

Please sign in to comment.