Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 503dcbeb authored by Tony Lindgren's avatar Tony Lindgren
Browse files

OMAP: Fix IOMEM macro for assembly



Otherwise IOMEM calculations can fail.

Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent cb5793db
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -201,7 +201,7 @@
#define OMAP2_IO_ADDRESS(pa)	IOMEM(__OMAP2_IO_ADDRESS(pa))

#ifdef __ASSEMBLER__
#define IOMEM(x)		x
#define IOMEM(x)		(x)
#else
#define IOMEM(x)		((void __force __iomem *)(x))