Commit 19e0a70e authored by Thorsten Blum's avatar Thorsten Blum Committed by Michael Ellerman
Browse files

powerpc: Use str_enabled_disabled() helper function



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

Signed-off-by: default avatarThorsten Blum <thorsten.blum@linux.dev>
Reviewed-by: default avatarRitesh Harjani (IBM) <ritesh.list@gmail.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://patch.msgid.link/20241027222219.1173-2-thorsten.blum@linux.dev
parent f1c774ba
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
 */
#include <linux/types.h>
#include <linux/of.h>
#include <linux/string_choices.h>
#include <asm/secure_boot.h>

static struct device_node *get_ppc_fw_sb_node(void)
@@ -38,7 +39,7 @@ bool is_ppc_secureboot_enabled(void)
	of_node_put(node);

out:
	pr_info("Secure boot mode %s\n", enabled ? "enabled" : "disabled");
	pr_info("Secure boot mode %s\n", str_enabled_disabled(enabled));

	return enabled;
}
@@ -62,7 +63,7 @@ bool is_ppc_trustedboot_enabled(void)
	of_node_put(node);

out:
	pr_info("Trusted boot mode %s\n", enabled ? "enabled" : "disabled");
	pr_info("Trusted boot mode %s\n", str_enabled_disabled(enabled));

	return enabled;
}