diff options
author | Peter Senna Tschudin <peter.senna@gmail.com> | 2014-07-29 16:12:20 (GMT) |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-07-29 23:57:13 (GMT) |
commit | 059802f961db9717412b6958111ca1cd1865726e (patch) | |
tree | d5cdc976411b8e08f853fd88516b06f55c5957be /scripts/makelst | |
parent | 13f6de52b149c030b0d529a3d8d68267ed20f01c (diff) | |
download | linux-059802f961db9717412b6958111ca1cd1865726e.tar.xz |
cpupower: Remove redundant error check
Remove double checks, and move the call to print_error to the
first check. Replace break by return, and return 0 on success.
The simplified version of the coccinelle semantic patch that
fixes this issue is as follows:
// <smpl>
@@
expression E; identifier pr; expression list es;
@@
for(...;...;...){
...
- if (E) break;
+ if (E){
+ pr(es);
+ break;
+ }
...
}
- if(E) pr(es);
// </smpl>
Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
Signed-off-by: Thomas Renninger <trenn@suse.de>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'scripts/makelst')
0 files changed, 0 insertions, 0 deletions