Staging:vc04_services:vchiq_util.c: kzalloc call changed to kcalloc
authorAndrey Severin <lkd1024@mail.ru>
Mon, 17 Jul 2017 13:18:46 +0000 (16:18 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 18 Jul 2017 06:57:59 +0000 (08:57 +0200)
kzalloc call was changed to kcalloc by checkpatch.pl recommendation

Signed-off-by: Andrey Severin <lkd1024@mail.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_util.c

index 7fa0310..2e52f07 100644 (file)
@@ -51,7 +51,7 @@ int vchiu_queue_init(VCHIU_QUEUE_T *queue, int size)
        sema_init(&queue->pop, 0);
        sema_init(&queue->push, 0);
 
-       queue->storage = kzalloc(size * sizeof(VCHIQ_HEADER_T *), GFP_KERNEL);
+       queue->storage = kcalloc(size, sizeof(VCHIQ_HEADER_T *), GFP_KERNEL);
        if (!queue->storage) {
                vchiu_queue_delete(queue);
                return 0;