mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-23 01:40:30 +00:00
staging: et131x: Moving two extern inline functions to .c file
Two helper functions for adding 10bit/12bit umbers with wrapping are defined in the header. Moved them to the driver .c file. Signed-off-by: Mark Einon <mark.einon@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
82e4b35f4d
commit
920d74a405
@ -2666,6 +2666,17 @@ void et131x_rx_dma_enable(struct et131x_adapter *adapter)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static inline void add_10bit(u32 *v, int n)
|
||||
{
|
||||
*v = INDEX10(*v + n) | (*v & ET_DMA10_WRAP);
|
||||
}
|
||||
|
||||
static inline void add_12bit(u32 *v, int n)
|
||||
{
|
||||
*v = INDEX12(*v + n) | (*v & ET_DMA12_WRAP);
|
||||
}
|
||||
|
||||
/**
|
||||
* nic_rx_pkts - Checks the hardware for available packets
|
||||
* @adapter: pointer to our adapter
|
||||
|
@ -230,16 +230,6 @@ struct global_regs { /* Location: */
|
||||
#define INDEX10(x) ((x) & ET_DMA10_MASK)
|
||||
#define INDEX4(x) ((x) & ET_DMA4_MASK)
|
||||
|
||||
extern inline void add_10bit(u32 *v, int n)
|
||||
{
|
||||
*v = INDEX10(*v + n) | (*v & ET_DMA10_WRAP);
|
||||
}
|
||||
|
||||
extern inline void add_12bit(u32 *v, int n)
|
||||
{
|
||||
*v = INDEX12(*v + n) | (*v & ET_DMA12_WRAP);
|
||||
}
|
||||
|
||||
/*
|
||||
* 10bit DMA with wrap
|
||||
* txdma tx queue write address reg in txdma address map at 0x1010
|
||||
|
Loading…
Reference in New Issue
Block a user