Commit 26bef359 authored by Thorsten Blum's avatar Thorsten Blum Committed by Madhavan Srinivasan
Browse files

powerpc: Use str_on_off() helper in check_cache_coherency()



Remove hard-coded strings by using the str_on_off() helper function.

Signed-off-by: default avatarThorsten Blum <thorsten.blum@linux.dev>
Signed-off-by: default avatarMadhavan Srinivasan <maddy@linux.ibm.com>
Link: https://patch.msgid.link/20241220191705.1446-2-thorsten.blum@linux.dev
parent eda86a41
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -834,8 +834,8 @@ static int __init check_cache_coherency(void)
	if (devtree_coherency != KERNEL_COHERENCY) {
		printk(KERN_ERR
			"kernel coherency:%s != device tree_coherency:%s\n",
			KERNEL_COHERENCY ? "on" : "off",
			devtree_coherency ? "on" : "off");
			str_on_off(KERNEL_COHERENCY),
			str_on_off(devtree_coherency));
		BUG();
	}