lib/genalloc.c: convert kmalloc_node(...GFP_ZERO...) to kzalloc_node(...)
[firefly-linux-kernel-4.4.55.git] / lib / genalloc.c
index 2a39bf62d8c1b71d5862098991b7fb71abbc9faf..c522facfa3e59e0fa4aa2d4adc024cfc626d3478 100644 (file)
@@ -187,7 +187,7 @@ int gen_pool_add_virt(struct gen_pool *pool, unsigned long virt, phys_addr_t phy
        int nbytes = sizeof(struct gen_pool_chunk) +
                                BITS_TO_LONGS(nbits) * sizeof(long);
 
-       chunk = kmalloc_node(nbytes, GFP_KERNEL | __GFP_ZERO, nid);
+       chunk = kzalloc_node(nbytes, GFP_KERNEL, nid);
        if (unlikely(chunk == NULL))
                return -ENOMEM;