xilinx: Fix build on x86.
CONFIG_64BIT is not sufficient for checking for availability of
iowrite64() and friends.
Also, the out_addr helpers need to be inline.
Fixes: b690f8df64
("net: axienet: Use iowrite64 to write all 64b descriptor pointers")
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a7ffce959c
commit
5f7b84151a
|
@ -563,7 +563,7 @@ static inline void axienet_dma_out32(struct axienet_local *lp,
|
|||
iowrite32(value, lp->dma_regs + reg);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_64BIT
|
||||
#if defined(CONFIG_64BIT) && defined(iowrite64)
|
||||
/**
|
||||
* axienet_dma_out64 - Memory mapped Axi DMA register write.
|
||||
* @lp: Pointer to axienet local structure
|
||||
|
@ -579,8 +579,8 @@ static inline void axienet_dma_out64(struct axienet_local *lp,
|
|||
iowrite64(value, lp->dma_regs + reg);
|
||||
}
|
||||
|
||||
static void axienet_dma_out_addr(struct axienet_local *lp, off_t reg,
|
||||
dma_addr_t addr)
|
||||
static inline void axienet_dma_out_addr(struct axienet_local *lp, off_t reg,
|
||||
dma_addr_t addr)
|
||||
{
|
||||
if (lp->features & XAE_FEATURE_DMA_64BIT)
|
||||
axienet_dma_out64(lp, reg, addr);
|
||||
|
@ -590,7 +590,7 @@ static void axienet_dma_out_addr(struct axienet_local *lp, off_t reg,
|
|||
|
||||
#else /* CONFIG_64BIT */
|
||||
|
||||
static void axienet_dma_out_addr(struct axienet_local *lp, off_t reg,
|
||||
static inline void axienet_dma_out_addr(struct axienet_local *lp, off_t reg,
|
||||
dma_addr_t addr)
|
||||
{
|
||||
axienet_dma_out32(lp, reg, lower_32_bits(addr));
|
||||
|
|
Loading…
Reference in New Issue