diff options
| author | Gargi Sharma <[email protected]> | 2017-03-07 23:50:27 +0530 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2017-03-09 18:50:05 +0100 |
| commit | c95d2e87fca1402e1a6a2a8577bf78abd401671f (patch) | |
| tree | 782f340d6fb7ee1b7333402fc3e30759ff2b89cb /tools/perf/scripts/python/netdev-times.py | |
| parent | 9304b5b0d4fe8498d3d059db4bb8a7de253355a5 (diff) | |
staging: gdm724x: Replace ternary operator with min macro
Use macro min() to get the minimum of two values for
brevity and readability. The macro MUX_TX_MAX_SIZE
has a value of 2048 which is well within the integer
limits. This check was done manually.
Found using Coccinelle:
@@ type T; T x; T y; @@
(
- x < y ? x : y
+ min(x,y)
|
- x > y ? x : y
+ max(x,y)
)
Signed-off-by: Gargi Sharma <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/netdev-times.py')
0 files changed, 0 insertions, 0 deletions