summaryrefslogtreecommitdiff
path: root/drivers/staging/mt7621-eth/mtk_eth_soc.c
diff options
context:
space:
mode:
authorKamal Heib <kamalheib1@gmail.com>2018-05-07 12:05:55 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-05-08 13:53:43 +0200
commit9cecd920a5032feb513ff955fcc4fea8bd82d537 (patch)
tree8dca196298be57938e50a3a86fa46abdbb3f0d5c /drivers/staging/mt7621-eth/mtk_eth_soc.c
parent267d901a7d59b19d1a1dbd021ba49a097fbe53af (diff)
staging: mt7621-eth: Fix compilation error
Fix the following comilation error by making sure that "phy_ring_head" is defined as "dma_addr_t" and change "phy_ring_tail" to match it as both should be "dma_addr_t". error: passing argument 3 of ‘dma_alloc_coherent’ from incompatible pointer type Signed-off-by: Kamal Heib <kamalheib1@gmail.com> Reviewed-by: NeilBrown <neil@brown.name> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/mt7621-eth/mtk_eth_soc.c')
-rw-r--r--drivers/staging/mt7621-eth/mtk_eth_soc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/mt7621-eth/mtk_eth_soc.c b/drivers/staging/mt7621-eth/mtk_eth_soc.c
index cbc7339843a5..c44a2f8a841c 100644
--- a/drivers/staging/mt7621-eth/mtk_eth_soc.c
+++ b/drivers/staging/mt7621-eth/mtk_eth_soc.c
@@ -768,9 +768,8 @@ err_dma:
/* the qdma core needs scratch memory to be setup */
static int mtk_init_fq_dma(struct mtk_eth *eth)
{
- unsigned int phy_ring_head, phy_ring_tail;
+ dma_addr_t dma_addr, phy_ring_head, phy_ring_tail;
int cnt = eth->soc->dma_ring_size;
- dma_addr_t dma_addr;
int i;
eth->scratch_ring = dma_alloc_coherent(eth->dev,