mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 10:05:19 +07:00
fbeeea5386
Change the reg argument of the ep93xx_syscon_swlocked_write function to be an __iomem pointer. Fixes a number of build warnings. Signed-off-by: Ryan Mallon <ryan@bluewatersys.com> Acked-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
40 lines
915 B
C
40 lines
915 B
C
/*
|
|
* arch/arm/mach-ep93xx/include/mach/platform.h
|
|
*/
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
struct i2c_board_info;
|
|
|
|
struct ep93xx_eth_data
|
|
{
|
|
unsigned char dev_addr[6];
|
|
unsigned char phy_id;
|
|
};
|
|
|
|
void ep93xx_map_io(void);
|
|
void ep93xx_init_irq(void);
|
|
void ep93xx_init_time(unsigned long);
|
|
|
|
/* EP93xx System Controller software locked register write */
|
|
void ep93xx_syscon_swlocked_write(unsigned int val, void __iomem *reg);
|
|
void ep93xx_devcfg_set_clear(unsigned int set_bits, unsigned int clear_bits);
|
|
|
|
static inline void ep93xx_devcfg_set_bits(unsigned int bits)
|
|
{
|
|
ep93xx_devcfg_set_clear(bits, 0x00);
|
|
}
|
|
|
|
static inline void ep93xx_devcfg_clear_bits(unsigned int bits)
|
|
{
|
|
ep93xx_devcfg_set_clear(0x00, bits);
|
|
}
|
|
|
|
void ep93xx_register_eth(struct ep93xx_eth_data *data, int copy_addr);
|
|
void ep93xx_register_i2c(struct i2c_board_info *devices, int num);
|
|
|
|
void ep93xx_init_devices(void);
|
|
extern struct sys_timer ep93xx_timer;
|
|
|
|
#endif
|