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

Commit da8274e1 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ARM: 7819/1: fiq: Cast the first argument of flush_icache_range()"

parents a0d93fb5 78297468
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -90,7 +90,8 @@ void set_fiq_handler(void *start, unsigned int length)

	memcpy(base + offset, start, length);
	if (!cache_is_vipt_nonaliasing())
		flush_icache_range(base + offset, offset + length);
		flush_icache_range((unsigned long)base + offset, offset +
				   length);
	flush_icache_range(0xffff0000 + offset, 0xffff0000 + offset + length);
}