Commit 2e363be0 authored by Navya Sri Nizamkari's avatar Navya Sri Nizamkari Committed by Greg Kroah-Hartman

staging: dgnc: Use kcalloc instead of kzalloc.

This patch uses kcalloc instead of kzalloc function.
A coccinelle script was used to make this change.
Signed-off-by: default avatarNavya Sri Nizamkari <navyasri.tech@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cb1185a4
...@@ -409,7 +409,7 @@ static int dgnc_found_board(struct pci_dev *pdev, int id) ...@@ -409,7 +409,7 @@ static int dgnc_found_board(struct pci_dev *pdev, int id)
return -ENOMEM; return -ENOMEM;
/* make a temporary message buffer for the boot messages */ /* make a temporary message buffer for the boot messages */
brd->msgbuf_head = kzalloc(sizeof(u8) * 8192, GFP_KERNEL); brd->msgbuf_head = kcalloc(8192, sizeof(u8), GFP_KERNEL);
brd->msgbuf = brd->msgbuf_head; brd->msgbuf = brd->msgbuf_head;
if (!brd->msgbuf) { if (!brd->msgbuf) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment