[PATCH] staging: android: ion: remove unnecessary intermediate variable 'objs'

From: Valery Ivanov
Date: Thu Aug 27 2020 - 11:17:56 EST


It is not necesssary to use 'objs' as an intermediate variable for assignment operation.

Signed-off-by: Valery Ivanov <ivalery111@xxxxxxxxx>
---
drivers/staging/android/ion/ion.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/android/ion/ion.c b/drivers/staging/android/ion/ion.c
index 3c9f09506ffa..137bef25dcbc 100644
--- a/drivers/staging/android/ion/ion.c
+++ b/drivers/staging/android/ion/ion.c
@@ -523,15 +523,12 @@ static int debug_shrink_set(void *data, u64 val)
{
struct ion_heap *heap = data;
struct shrink_control sc;
- int objs;

sc.gfp_mask = GFP_HIGHUSER;
sc.nr_to_scan = val;

- if (!val) {
- objs = heap->shrinker.count_objects(&heap->shrinker, &sc);
- sc.nr_to_scan = objs;
- }
+ if (!val)
+ sc.nr_to_scan = heap->shrinker.count_objects(&heap->shrinker, &sc);

heap->shrinker.scan_objects(&heap->shrinker, &sc);
return 0;
--
2.25.1