summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath10k/pci.c
diff options
context:
space:
mode:
authorMichal Kazior <michal.kazior@tieto.com>2013-08-13 07:54:55 +0200
committerKalle Valo <kvalo@qca.qualcomm.com>2013-08-14 18:00:00 +0300
commitffe5daa873d37b56203dce4e8e55a4fab26b796d (patch)
tree558e195ec31802b71639a1d70b256d0d8b1fe42b /drivers/net/wireless/ath/ath10k/pci.c
parent7a53f3f38ad4746c82496293bfb48fae69d71c64 (diff)
downloadop-kernel-dev-ffe5daa873d37b56203dce4e8e55a4fab26b796d.zip
op-kernel-dev-ffe5daa873d37b56203dce4e8e55a4fab26b796d.tar.gz
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>
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/pci.c')
-rw-r--r--drivers/net/wireless/ath/ath10k/pci.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath10k/pci.c b/drivers/net/wireless/ath/ath10k/pci.c
index 4c94add..8d24c69 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);
OpenPOWER on IntegriCloud