Commit b691bbe2 authored by Andrey Severin's avatar Andrey Severin Committed by Greg Kroah-Hartman
Browse files

Staging:vc04_services:vchiq_util.c: kzalloc call changed to kcalloc



kzalloc call was changed to kcalloc by checkpatch.pl recommendation

Signed-off-by: default avatarAndrey Severin <lkd1024@mail.ru>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7d647bcf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;