Altera TSE: Fix sparse errors and warnings
This patch fixes the many sparse errors and warnings contained in the initial submission of the Altera Triple Speed Ethernet driver, and a few minor cppcheck warnings. Changes are tested on ARM and NIOS2 example designs, and compile tested against multiple architectures. Typical issues addressed were as follows: altera_tse_ethtool.c:136:19: warning: incorrect type in argument 1 (different address spaces) altera_tse_ethtool.c:136:19: expected void const volatile [noderef] <asn:2>*addr altera_tse_ethtool.c:136:19: got unsigned int *<noident> ... altera_sgdma.c:129:31: warning: cast removes address space of expression Signed-off-by: Vince Bridgers <vbridgers2013@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
200b916f35
commit
898305806a
@@ -17,28 +17,28 @@
|
||||
#include "altera_tse.h"
|
||||
#include "altera_utils.h"
|
||||
|
||||
void tse_set_bit(void __iomem *ioaddr, u32 bit_mask)
|
||||
void tse_set_bit(void __iomem *ioaddr, size_t offs, u32 bit_mask)
|
||||
{
|
||||
u32 value = ioread32(ioaddr);
|
||||
u32 value = csrrd32(ioaddr, offs);
|
||||
value |= bit_mask;
|
||||
iowrite32(value, ioaddr);
|
||||
csrwr32(value, ioaddr, offs);
|
||||
}
|
||||
|
||||
void tse_clear_bit(void __iomem *ioaddr, u32 bit_mask)
|
||||
void tse_clear_bit(void __iomem *ioaddr, size_t offs, u32 bit_mask)
|
||||
{
|
||||
u32 value = ioread32(ioaddr);
|
||||
u32 value = csrrd32(ioaddr, offs);
|
||||
value &= ~bit_mask;
|
||||
iowrite32(value, ioaddr);
|
||||
csrwr32(value, ioaddr, offs);
|
||||
}
|
||||
|
||||
int tse_bit_is_set(void __iomem *ioaddr, u32 bit_mask)
|
||||
int tse_bit_is_set(void __iomem *ioaddr, size_t offs, u32 bit_mask)
|
||||
{
|
||||
u32 value = ioread32(ioaddr);
|
||||
u32 value = csrrd32(ioaddr, offs);
|
||||
return (value & bit_mask) ? 1 : 0;
|
||||
}
|
||||
|
||||
int tse_bit_is_clear(void __iomem *ioaddr, u32 bit_mask)
|
||||
int tse_bit_is_clear(void __iomem *ioaddr, size_t offs, u32 bit_mask)
|
||||
{
|
||||
u32 value = ioread32(ioaddr);
|
||||
u32 value = csrrd32(ioaddr, offs);
|
||||
return (value & bit_mask) ? 0 : 1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user