[PATCH 050/100] caif: Add missing braces to multiline if in cfctrl_linkup_request
Luis Henriques
luis.henriques at canonical.com
Fri Oct 11 10:41:20 UTC 2013
3.5.7.23 -stable review patch. If anyone has any objections, please let me know.
------------------
From: Dave Jones <davej at redhat.com>
commit 0c1db731bfcf3a9fd6c58132134f8b0f423552f0 upstream.
The indentation here implies this was meant to be a multi-line if.
Introduced several years back in commit c85c2951d4da1236e32f1858db418221e624aba5
("caif: Handle dev_queue_xmit errors.")
Signed-off-by: Dave Jones <davej at fedoraproject.org>
Signed-off-by: David S. Miller <davem at davemloft.net>
Signed-off-by: Luis Henriques <luis.henriques at canonical.com>
---
net/caif/cfctrl.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net/caif/cfctrl.c b/net/caif/cfctrl.c
index 047cd0e..61fe8d2 100644
--- a/net/caif/cfctrl.c
+++ b/net/caif/cfctrl.c
@@ -291,9 +291,10 @@ int cfctrl_linkup_request(struct cflayer *layer,
count = cfctrl_cancel_req(&cfctrl->serv.layer,
user_layer);
- if (count != 1)
+ if (count != 1) {
pr_err("Could not remove request (%d)", count);
return -ENODEV;
+ }
}
return 0;
}
--
1.8.3.2
More information about the kernel-team
mailing list