projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32d3916
)
x86/intel/quark: Fix simple_return.cocci warnings
author
Fengguang Wu
<
[email protected]
>
Thu, 19 Feb 2015 08:14:32 +0000
(16:14 +0800)
committer
Ingo Molnar
<
[email protected]
>
Thu, 19 Feb 2015 09:00:55 +0000
(10:00 +0100)
arch/x86/platform/intel-quark/imr.c:129:1-4: WARNING: end returns can be simpified
Simplify a trivial if-return sequence. Possibly combine with a preceding function call.
Generated by: scripts/coccinelle/misc/simple_return.cocci
Signed-off-by: Fengguang Wu <
[email protected]
>
Cc: Andy Shevchenko <
[email protected]
>
Cc: Ong, Boon Leong <
[email protected]
>
Cc: Bryan O'Donoghue <
[email protected]
>
Cc: Darren Hart <
[email protected]
>
Cc:
[email protected]
Link:
http://lkml.kernel.org/r/20150219081432.GA21996@waimea
Signed-off-by: Ingo Molnar <
[email protected]
>
arch/x86/platform/intel-quark/imr.c
patch
|
blob
|
history
diff --git
a/arch/x86/platform/intel-quark/imr.c
b/arch/x86/platform/intel-quark/imr.c
index 60c01eb47dd6334dda7e838ed2270ffd0dc3791f..0ee619f9fcb725f73ad13b96c680fe97ad29bef0 100644
(file)
--- a/
arch/x86/platform/intel-quark/imr.c
+++ b/
arch/x86/platform/intel-quark/imr.c
@@
-126,12
+126,8
@@
static int imr_read(struct imr_device *idev, u32 imr_id, struct imr_regs *imr)
if (ret)
return ret;
- ret
=
iosf_mbi_read(QRK_MBI_UNIT_MM, QRK_MBI_MM_READ,
+ ret
urn
iosf_mbi_read(QRK_MBI_UNIT_MM, QRK_MBI_MM_READ,
reg++, &imr->wmask);
- if (ret)
- return ret;
-
- return 0;
}
/**