Modify the test where bitmap_set_value() is called. bitmap_set_value()
now takes an extra bitmap-width as second argument and the width of
value is now present as the fourth argument.

Signed-off-by: Syed Nayyar Waris <[email protected]>
---
 lib/test_bitmap.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/test_bitmap.c b/lib/test_bitmap.c
index 1c5791ff02cb..7fafe6a0bc08 100644
--- a/lib/test_bitmap.c
+++ b/lib/test_bitmap.c
@@ -656,8 +656,8 @@ static void __init prepare_test_data(unsigned int index)
        unsigned long width = 0;
 
        for (i = 0; i < clump_test_data[index].count; i++) {
-               bitmap_set_value(clump_test_data[index].data,
-                       clump_bitmap_data[(clump_test_data[index].offset)++], 
width, 32);
+               bitmap_set_value(clump_test_data[index].data, 256,
+                       clump_bitmap_data[(clump_test_data[index].offset)++], 
32, width);
                width += 32;
        }
 }
-- 
2.29.0

Reply via email to