From: Michal Kazior <michal.kazior@tieto.com>
Date: Tue, 13 Aug 2013 05:54:55 +0000 (+0200)
Subject: ath10k: use sizeof(*var) in kmalloc
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=ffe5daa873d37b56203dce4e8e55a4fab26b796d;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git

ath10k: use sizeof(*var) in kmalloc

This fixes checkpatch warning from the latest
3.11-rc kernel tree.

Signed-off-by: Michal Kazior <michal.kazior@tieto.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
---

diff --git a/drivers/net/wireless/ath/ath10k/pci.c b/drivers/net/wireless/ath/ath10k/pci.c
index 4c94add4960d..8d24c6920a5b 100644
--- a/drivers/net/wireless/ath/ath10k/pci.c
+++ b/drivers/net/wireless/ath/ath10k/pci.c
@@ -803,8 +803,7 @@ static int ath10k_pci_start_ce(struct ath10k *ar)
 			continue;
 
 		for (i = 0; i < completions; i++) {
-			compl = kmalloc(sizeof(struct ath10k_pci_compl),
-					GFP_KERNEL);
+			compl = kmalloc(sizeof(*compl), GFP_KERNEL);
 			if (!compl) {
 				ath10k_warn("No memory for completion state\n");
 				ath10k_pci_stop_ce(ar);