diff options
| author | Vaishali Thakkar <[email protected]> | 2014-09-19 10:30:59 +0530 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2014-09-19 17:25:22 -0700 |
| commit | 3dfe7557809e5867306c7a0614b9d1c6036cbe4d (patch) | |
| tree | f2d8b8a4fc5e5ec843843ebe307993f0b373eda1 /include/linux/debugobjects.h | |
| parent | 10352c2a69f4aa2724f007a4922518c9ece7bf89 (diff) | |
Staging: dgnc: Merge lines and remove unused variable for immediate return
This patch merges two lines in a single line if immediate
return is found. It also removes unnecessory variable rc
as it is no longer needed.
This is done using Coccinelle. Semantic patch used for this
is as follows:
@@
type T;
identifier i;
identifier f;
constant C;
@@
- T i;
...when != i
when strict
(
return -C;
|
- i =
+ return
f(...);
- return i;
)
Signed-off-by: Vaishali Thakkar <[email protected]>
Reviewed-by: Julia Lawall <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'include/linux/debugobjects.h')
0 files changed, 0 insertions, 0 deletions