mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
caif: Add missing braces to multiline if in cfctrl_linkup_request
[ Upstream commit0c1db731bf
] The indentation here implies this was meant to be a multi-line if. Introduced several years back in commitc85c2951d4
("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>
This commit is contained in:
parent
d45a3625d3
commit
8e307e20b3
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue