diff options
author | Amitoj Kaur Chawla <amitoj1606@gmail.com> | 2016-02-25 08:18:52 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-03-11 22:09:09 -0800 |
commit | 9f1c427d8093a97f356612c933f12f3b9f0bc9de (patch) | |
tree | eecb4360c4e19bc85d5200ba932f333da2d950ef /fs/autofs4/symlink.c | |
parent | dcce1c7c083d80a8230270eb264c90a8d767131f (diff) |
staging: android: Replace min_t/max_t with min/max
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)
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/autofs4/symlink.c')
0 files changed, 0 insertions, 0 deletions