forked from Minki/linux
net caif: insert missing spaces in pr_* messages and unbreak multi-line 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 <colin.king@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d5a14ff0ff
commit
b09edbd07f
@ -390,8 +390,7 @@ cfcnfg_linkup_rsp(struct cflayer *layer, u8 channel_id, enum cfctrl_srv serv,
|
|||||||
rcu_read_lock();
|
rcu_read_lock();
|
||||||
|
|
||||||
if (adapt_layer == NULL) {
|
if (adapt_layer == NULL) {
|
||||||
pr_debug("link setup response but no client exist,"
|
pr_debug("link setup response but no client exist, send linkdown back\n");
|
||||||
"send linkdown back\n");
|
|
||||||
cfctrl_linkdown_req(cnfg->ctrl, channel_id, NULL);
|
cfctrl_linkdown_req(cnfg->ctrl, channel_id, NULL);
|
||||||
goto unlock;
|
goto unlock;
|
||||||
}
|
}
|
||||||
@ -401,8 +400,7 @@ cfcnfg_linkup_rsp(struct cflayer *layer, u8 channel_id, enum cfctrl_srv serv,
|
|||||||
|
|
||||||
phyinfo = cfcnfg_get_phyinfo_rcu(cnfg, phyid);
|
phyinfo = cfcnfg_get_phyinfo_rcu(cnfg, phyid);
|
||||||
if (phyinfo == NULL) {
|
if (phyinfo == NULL) {
|
||||||
pr_err("ERROR: Link Layer Device disappeared"
|
pr_err("ERROR: Link Layer Device disappeared while connecting\n");
|
||||||
"while connecting\n");
|
|
||||||
goto unlock;
|
goto unlock;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -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);
|
servicel = cfdbgl_create(channel_id, &phyinfo->dev_info);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
pr_err("Protocol error. Link setup response "
|
pr_err("Protocol error. Link setup response - unknown channel type\n");
|
||||||
"- unknown channel type\n");
|
|
||||||
goto unlock;
|
goto unlock;
|
||||||
}
|
}
|
||||||
if (!servicel)
|
if (!servicel)
|
||||||
|
Loading…
Reference in New Issue
Block a user