diff options
| author | Tobias Nießen <[email protected]> | 2019-06-26 16:28:56 +0200 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2019-07-01 09:05:21 +0200 |
| commit | 34a49d9edf3af971867e3876de7dc9935d467f67 (patch) | |
| tree | 54b2064cb0680a88580455a1b827fe422834338d /tools/perf/scripts/python | |
| parent | 7ff9f78ea683229264d813949ae21b24234267c6 (diff) | |
staging: rts5208: Rewrite redundant if statement to improve code style
This commit uses the fact that
if (a) {
if (b) {
...
}
}
can instead be written as
if (a && b) {
...
}
without any change in behavior, allowing to decrease the indentation
of the contained code block and thus reducing the average line length.
Signed-off-by: Tobias Nießen <[email protected]>
Signed-off-by: Sabrina Gaube <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions