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

Commit 2b431518 authored by Paul Mundt's avatar Paul Mundt
Browse files

sh: Wire up sh5_cache_init().



Now that the SH-5 code is more or less behaving with the new cacheflush
interface, wire up the initialization code.

Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 8c41cdca
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -277,5 +277,11 @@ void __init cpu_cache_init(void)
		sh4_cache_init();
	}

	if (boot_cpu_data.family == CPU_FAMILY_SH5) {
		extern void __weak sh5_cache_init(void);

		sh5_cache_init();
	}

	emit_cache_params();
}