mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
mfd/asic3: ioread/iowrite take pointer, not unsigned long
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
97cf010aeb
commit
b32661e06c
1 changed files with 2 additions and 2 deletions
|
@ -28,14 +28,14 @@
|
|||
static inline void asic3_write_register(struct asic3 *asic,
|
||||
unsigned int reg, u32 value)
|
||||
{
|
||||
iowrite16(value, (unsigned long)asic->mapping +
|
||||
iowrite16(value, asic->mapping +
|
||||
(reg >> asic->bus_shift));
|
||||
}
|
||||
|
||||
static inline u32 asic3_read_register(struct asic3 *asic,
|
||||
unsigned int reg)
|
||||
{
|
||||
return ioread16((unsigned long)asic->mapping +
|
||||
return ioread16(asic->mapping +
|
||||
(reg >> asic->bus_shift));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue