Commit 560dca25 authored by Christian Gromm's avatar Christian Gromm Committed by Greg Kroah-Hartman

staging: most: use readl and writel functions

This patch makes use of functions readl and writel instead of
the __raw_* variants.
Signed-off-by: default avatarChristian Gromm <christian.gromm@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9e2f2c4f
......@@ -140,7 +140,7 @@ bool dim2_sysfs_get_state_cb(void)
*/
u32 dimcb_io_read(u32 *ptr32)
{
return __raw_readl(ptr32);
return readl(ptr32);
}
/**
......@@ -150,7 +150,7 @@ u32 dimcb_io_read(u32 *ptr32)
*/
void dimcb_io_write(u32 *ptr32, u32 value)
{
__raw_writel(value, ptr32);
writel(value, ptr32);
}
/**
......
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