Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a804ad0e authored by Vince Bridgers's avatar Vince Bridgers Committed by David S. Miller
Browse files

Altera TSE: Correct typecast issue detected by kbuild test robot



This patch addresses a portable pointer arithmetic issue in the
original submission found by the kbuild test robot.

config: make ARCH=i386 allyesconfig

   altera_sgdma.c: In function 'sgdma_txphysaddr':
>> altera_sgdma.c:393:33: warning: cast from
>> pointer to integer of different size [-Wpointer-to-int-cast]
     dma_addr_t offs = (dma_addr_t)((dma_addr_t)desc -
                                    ^
>> altera_sgdma.c:394:5: warning: cast from
>> pointer to integer of different size [-Wpointer-to-int-cast]
        (dma_addr_t)priv->tx_dma_desc);
        ^
   altera_sgdma.c: In function 'sgdma_rxphysaddr':
>> altera_sgdma.c:403:33: warning: cast from
>> pointer to integer of different size [-Wpointer-to-int-cast]
     dma_addr_t offs = (dma_addr_t)((dma_addr_t)desc -
                                    ^
>> altera_sgdma.c:404:5: warning: cast from
>> pointer to integer of different size [-Wpointer-to-int-cast]
        (dma_addr_t)priv->rx_dma_desc);
        ^

Reported-by: default avatarkbuild test robot <fengguang.wu@intel.com>
Signed-off-by: default avatarVince Bridgers <vbridgers2013@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8adfc3ae
Loading
Loading
Loading
Loading
+4 −6
Original line number Original line Diff line number Diff line
@@ -390,9 +390,8 @@ sgdma_txphysaddr(struct altera_tse_private *priv,
		 struct sgdma_descrip *desc)
		 struct sgdma_descrip *desc)
{
{
	dma_addr_t paddr = priv->txdescmem_busaddr;
	dma_addr_t paddr = priv->txdescmem_busaddr;
	dma_addr_t offs = (dma_addr_t)((dma_addr_t)desc -
	uintptr_t offs = (uintptr_t)desc - (uintptr_t)priv->tx_dma_desc;
				(dma_addr_t)priv->tx_dma_desc);
	return (dma_addr_t)((uintptr_t)paddr + offs);
	return paddr + offs;
}
}


static dma_addr_t
static dma_addr_t
@@ -400,9 +399,8 @@ sgdma_rxphysaddr(struct altera_tse_private *priv,
		 struct sgdma_descrip *desc)
		 struct sgdma_descrip *desc)
{
{
	dma_addr_t paddr = priv->rxdescmem_busaddr;
	dma_addr_t paddr = priv->rxdescmem_busaddr;
	dma_addr_t offs = (dma_addr_t)((dma_addr_t)desc -
	uintptr_t offs = (uintptr_t)desc - (uintptr_t)priv->rx_dma_desc;
				(dma_addr_t)priv->rx_dma_desc);
	return (dma_addr_t)((uintptr_t)paddr + offs);
	return paddr + offs;
}
}


#define list_remove_head(list, entry, type, member)			\
#define list_remove_head(list, entry, type, member)			\