aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/atm/idt77252.c
diff options
context:
space:
mode:
authorFuqian Huang <huangfq.daxian@gmail.com>2019-07-15 11:17:09 +0800
committerDavid S. Miller <davem@davemloft.net>2019-07-15 11:06:27 -0700
commitcef86f1536b02e61e699f53b5f8782067481580d (patch)
tree60fe478d4916597cfae71478768ecf80abbb9844 /drivers/atm/idt77252.c
parentnet: neigh: fix multiple neigh timer scheduling (diff)
downloadlinux-dev-cef86f1536b02e61e699f53b5f8782067481580d.tar.xz
linux-dev-cef86f1536b02e61e699f53b5f8782067481580d.zip
atm: idt77252: Remove call to memset after dma_alloc_coherent
In commit 518a2f1925c3 ("dma-mapping: zero memory returned from dma_alloc_*"), dma_alloc_coherent has already zeroed the memory. So memset is not needed. Signed-off-by: Fuqian Huang <huangfq.daxian@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--drivers/atm/idt77252.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/atm/idt77252.c b/drivers/atm/idt77252.c
index 43a14579e80e..df51680e8931 100644
--- a/drivers/atm/idt77252.c
+++ b/drivers/atm/idt77252.c
@@ -1379,7 +1379,6 @@ init_tsq(struct idt77252_dev *card)
printk("%s: can't allocate TSQ.\n", card->name);
return -1;
}
- memset(card->tsq.base, 0, TSQSIZE);
card->tsq.last = card->tsq.base + TSQ_NUM_ENTRIES - 1;
card->tsq.next = card->tsq.last;