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

Commit d4f3add2 authored by Arnd Bergmann's avatar Arnd Bergmann
Browse files

ARM: common/vic: use proper __iomem annotations



In vic_init, we pass addr into readl, so it needs to be a
pointer, not a u32 address.

Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent 53eebb0d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -347,7 +347,8 @@ void __init vic_init(void __iomem *base, unsigned int irq_start,

	/* Identify which VIC cell this one is, by reading the ID */
	for (i = 0; i < 4; i++) {
		u32 addr = ((u32)base & PAGE_MASK) + 0xfe0 + (i * 4);
		void __iomem *addr;
		addr = (void __iomem *)((u32)base & PAGE_MASK) + 0xfe0 + (i * 4);
		cellid |= (readl(addr) & 0xff) << (8 * i);
	}
	vendor = (cellid >> 12) & 0xff;