[PATCH] use macro SHIFT instead of hard code 32

From: Ganesh Mahendran
Date: Thu Jul 06 2017 - 03:46:55 EST


32 is already defined as macro SHIFT, so it's better
to use macro SHIFT

Signed-off-by: Ganesh Mahendran <opensource.ganesh@xxxxxxxxx>
---
Documentation/scheduler/sched-pelt.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/scheduler/sched-pelt.c b/Documentation/scheduler/sched-pelt.c
index e421913..726cb31 100644
--- a/Documentation/scheduler/sched-pelt.c
+++ b/Documentation/scheduler/sched-pelt.c
@@ -22,7 +22,7 @@ void calc_runnable_avg_yN_inv(void)

printf("static const u32 runnable_avg_yN_inv[] = {");
for (i = 0; i < HALFLIFE; i++) {
- x = ((1UL<<32)-1)*pow(y, i);
+ x = ((1UL<<SHIFT)-1)*pow(y, i);

if (i % 6 == 0) printf("\n\t");
printf("0x%8x, ", x);
@@ -57,7 +57,7 @@ void calc_runnable_avg_yN_sum(void)

void calc_converged_max(void)
{
- long last = 0, y_inv = ((1UL<<32)-1)*y;
+ long last = 0, y_inv = ((1UL<<SHIFT)-1)*y;

for (; ; n++) {
if (n > -1)
--
1.9.1