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

Signed-off-by: Ganesh Mahendran <opensource.gan...@gmail.com>
---
 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

--
To unsubscribe from this list: send the line "unsubscribe linux-doc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to