We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eda86a4 commit 26bef35Copy full SHA for 26bef35
arch/powerpc/kernel/setup-common.c
@@ -834,8 +834,8 @@ static int __init check_cache_coherency(void)
834
if (devtree_coherency != KERNEL_COHERENCY) {
835
printk(KERN_ERR
836
"kernel coherency:%s != device tree_coherency:%s\n",
837
- KERNEL_COHERENCY ? "on" : "off",
838
- devtree_coherency ? "on" : "off");
+ str_on_off(KERNEL_COHERENCY),
+ str_on_off(devtree_coherency));
839
BUG();
840
}
841
0 commit comments