mirror of https://gitee.com/openkylin/linux.git
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>
This commit is contained in:
parent
dcce1c7c08
commit
9f1c427d80
|
@ -663,8 +663,8 @@ static int ashmem_unpin(struct ashmem_area *asma, size_t pgstart, size_t pgend)
|
|||
if (page_range_subsumed_by_range(range, pgstart, pgend))
|
||||
return 0;
|
||||
if (page_range_in_range(range, pgstart, pgend)) {
|
||||
pgstart = min_t(size_t, range->pgstart, pgstart);
|
||||
pgend = max_t(size_t, range->pgend, pgend);
|
||||
pgstart = min(range->pgstart, pgstart);
|
||||
pgend = max(range->pgend, pgend);
|
||||
purged |= range->purged;
|
||||
range_del(range);
|
||||
goto restart;
|
||||
|
|
Loading…
Reference in New Issue