From: Dave Jones Date: Thu, 5 Sep 2013 04:11:19 +0000 (-0400) Subject: caif: Add missing braces to multiline if in cfctrl_linkup_request X-Git-Tag: v3.2.52~50 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b7def7d7b236bd3e90df969ac9b3540777619c57;p=people%2Fms%2Flinux.git caif: Add missing braces to multiline if in cfctrl_linkup_request [ Upstream commit 0c1db731bfcf3a9fd6c58132134f8b0f423552f0 ] 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 Signed-off-by: David S. Miller Signed-off-by: Ben Hutchings --- diff --git a/net/caif/cfctrl.c b/net/caif/cfctrl.c index 5cf52225692e..84efbe4aa06a 100644 --- a/net/caif/cfctrl.c +++ b/net/caif/cfctrl.c @@ -288,9 +288,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; }