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

Commit ec70f65e authored by Ralf Baechle's avatar Ralf Baechle
Browse files

[MIPS] Kill useless volatile keyword

parent b47bd961
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1075,7 +1075,7 @@ void *set_except_vector(int n, void *addr)

	exception_handlers[n] = handler;
	if (n == 0 && cpu_has_divec) {
		*(volatile u32 *)(ebase + 0x200) = 0x08000000 |
		*(u32 *)(ebase + 0x200) = 0x08000000 |
					  (0x03ffffff & (handler >> 2));
		flush_icache_range(ebase + 0x200, ebase + 0x204);
	}