Commit b09bff26 authored by Jason Wang's avatar Jason Wang Committed by Mark Brown

spi: bcm2835aux: use 'unsigned int' instead of 'unsigned'

Prefer 'unsigned int' to bare use of 'unsigned'.
Signed-off-by: default avatarJason Wang <wangborong@cdjrlc.com>
Link: https://lore.kernel.org/r/20210731133342.432575-1-wangborong@cdjrlc.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 6e95b23a
...@@ -143,12 +143,12 @@ static void bcm2835aux_debugfs_remove(struct bcm2835aux_spi *bs) ...@@ -143,12 +143,12 @@ static void bcm2835aux_debugfs_remove(struct bcm2835aux_spi *bs)
} }
#endif /* CONFIG_DEBUG_FS */ #endif /* CONFIG_DEBUG_FS */
static inline u32 bcm2835aux_rd(struct bcm2835aux_spi *bs, unsigned reg) static inline u32 bcm2835aux_rd(struct bcm2835aux_spi *bs, unsigned int reg)
{ {
return readl(bs->regs + reg); return readl(bs->regs + reg);
} }
static inline void bcm2835aux_wr(struct bcm2835aux_spi *bs, unsigned reg, static inline void bcm2835aux_wr(struct bcm2835aux_spi *bs, unsigned int reg,
u32 val) u32 val)
{ {
writel(val, bs->regs + reg); writel(val, bs->regs + reg);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment