diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/genalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/genalloc.c b/lib/genalloc.c index 2a39bf62d8c1..c522facfa3e5 100644 --- a/lib/genalloc.c +++ b/lib/genalloc.c | |||
@@ -187,7 +187,7 @@ int gen_pool_add_virt(struct gen_pool *pool, unsigned long virt, phys_addr_t phy | |||
187 | int nbytes = sizeof(struct gen_pool_chunk) + | 187 | int nbytes = sizeof(struct gen_pool_chunk) + |
188 | BITS_TO_LONGS(nbits) * sizeof(long); | 188 | BITS_TO_LONGS(nbits) * sizeof(long); |
189 | 189 | ||
190 | chunk = kmalloc_node(nbytes, GFP_KERNEL | __GFP_ZERO, nid); | 190 | chunk = kzalloc_node(nbytes, GFP_KERNEL, nid); |
191 | if (unlikely(chunk == NULL)) | 191 | if (unlikely(chunk == NULL)) |
192 | return -ENOMEM; | 192 | return -ENOMEM; |
193 | 193 | ||