mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
staging: sm750fb: Fix parameter mistake in poke32
commit 16808dcf605e6302319a8c3266789b76d4c0983b upstream. In commit c075b6f2d357ea9 ("staging: sm750fb: Replace POKE32 and PEEK32 by inline functions"), POKE32 has been replaced by the inline function poke32. But it exchange the "addr" and "data" parameters by mistake, so fix it. Fixes: c075b6f2d357ea9 ("staging: sm750fb: Replace POKE32 and PEEK32 by inline functions"), Signed-off-by: Huacai Chen <chenhc@lemote.com> Signed-off-by: Liangliang Huang <huangll@lemote.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bbcb8d29aa
commit
69cf5ab217
@ -18,7 +18,7 @@ static inline u32 peek32(u32 addr)
|
||||
return readl(addr + mmio750);
|
||||
}
|
||||
|
||||
static inline void poke32(u32 data, u32 addr)
|
||||
static inline void poke32(u32 addr, u32 data)
|
||||
{
|
||||
writel(data, addr + mmio750);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user