diff options
author | Dave Jones <davej@redhat.com> | 2013-09-05 00:11:19 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-10-13 14:51:07 -0700 |
commit | 63195262c5555dc90fde66d1be41ab102cf00adb (patch) | |
tree | b74433f3c15050c06aad64bfe5c79e8395a95b91 /net | |
parent | 67ea0764ff204966d8f45b35dd26e939e2377b5a (diff) | |
download | kernel_samsung_espresso10-63195262c5555dc90fde66d1be41ab102cf00adb.zip kernel_samsung_espresso10-63195262c5555dc90fde66d1be41ab102cf00adb.tar.gz kernel_samsung_espresso10-63195262c5555dc90fde66d1be41ab102cf00adb.tar.bz2 |
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 <davej@fedoraproject.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/caif/cfctrl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/caif/cfctrl.c b/net/caif/cfctrl.c index e22671b..a80d94a 100644 --- a/net/caif/cfctrl.c +++ b/net/caif/cfctrl.c @@ -297,9 +297,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; } |