Tag: 9f1c427d8093a97f356612c933f12f3b9f0bc9de

staging: android: Replace min_t/max_t with min/max

Author: Amitoj Kaur Chawla <amitoj1606@gmail.com> Replace min_t/max_t with min/max when both variables are of the same type. The Coccinelle semantic patch used to make this change is as follows: @@ type T; T a,b; @@ – min_t(T, a, b) + min(a, b) @@ type T; T a,b; @@ – max_t(T, a, b) + max(a, b) …

Continue reading