sh: Fix up the __raw_read/writeX() definitions.
These were doing largely bogus things and using the wrong typing for the address. Bring these in line with the ARM definitions. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
@@ -14,12 +14,12 @@
|
||||
#include <linux/module.h>
|
||||
#include <linux/io.h>
|
||||
|
||||
void __raw_readsl(unsigned long addr, void *datap, int len)
|
||||
void __raw_readsl(const void __iomem *addr, void *datap, int len)
|
||||
{
|
||||
u32 *data;
|
||||
|
||||
for (data = datap; (len != 0) && (((u32)data & 0x1f) != 0); len--)
|
||||
*data++ = ctrl_inl(addr);
|
||||
*data++ = __raw_readl(addr);
|
||||
|
||||
if (likely(len >= (0x20 >> 2))) {
|
||||
int tmp2, tmp3, tmp4, tmp5, tmp6;
|
||||
@@ -59,11 +59,11 @@ void __raw_readsl(unsigned long addr, void *datap, int len)
|
||||
}
|
||||
|
||||
for (; len != 0; len--)
|
||||
*data++ = ctrl_inl(addr);
|
||||
*data++ = __raw_readl(addr);
|
||||
}
|
||||
EXPORT_SYMBOL(__raw_readsl);
|
||||
|
||||
void __raw_writesl(unsigned long addr, const void *data, int len)
|
||||
void __raw_writesl(void __iomem *addr, const void *data, int len)
|
||||
{
|
||||
if (likely(len != 0)) {
|
||||
int tmp1;
|
||||
|
Reference in New Issue
Block a user