From: Marc Kleine-Budde Date: Wed, 24 Jul 2019 12:34:42 +0000 (+0200) Subject: can: gw: cgw_dump_jobs(): avoid long lines X-Git-Tag: v5.4-rc1~131^2~229^2~7 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=78f8a326f924b090d5a495049c91aa599796f2aa;p=users%2Fhch%2Fxfs.git can: gw: cgw_dump_jobs(): avoid long lines This patch rewraps the arguments of cgw_put_job() to avoid long lines, which also fixes the indention. Signed-off-by: Marc Kleine-Budde --- diff --git a/net/can/gw.c b/net/can/gw.c index 9b2efbad1b7e..2d2be4afd560 100644 --- a/net/can/gw.c +++ b/net/can/gw.c @@ -609,8 +609,9 @@ static int cgw_dump_jobs(struct sk_buff *skb, struct netlink_callback *cb) if (idx < s_idx) goto cont; - if (cgw_put_job(skb, gwj, RTM_NEWROUTE, NETLINK_CB(cb->skb).portid, - cb->nlh->nlmsg_seq, NLM_F_MULTI) < 0) + if (cgw_put_job(skb, gwj, RTM_NEWROUTE, + NETLINK_CB(cb->skb).portid, + cb->nlh->nlmsg_seq, NLM_F_MULTI) < 0) break; cont: idx++;