These changes are made to satisfy checkpatch changes. NOTE: the '::' error on the asm_volatile is correct syntax for that command and will not be changes
Signed-off-by: Charlie Paul <[email protected]> --- arch/arm/mach-axxia/platsmp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-axxia/platsmp.c b/arch/arm/mach-axxia/platsmp.c index 75ce9b05..8e863b0 100644 --- a/arch/arm/mach-axxia/platsmp.c +++ b/arch/arm/mach-axxia/platsmp.c @@ -28,7 +28,7 @@ extern void axxia_secondary_startup(void); #define SYSCON_PHYS_ADDR 0x002010030000ULL -static int __cpuinitdata wfe_fixup = 0; +static int __cpuinitdata wfe_fixup; /* * Check if we need to enable cross-cluster SEV workaround for a bug in @@ -44,7 +44,7 @@ static void __init check_fixup_sev(void __iomem *syscon) /* Set flag for secondary cores */ wfe_fixup = (chip_type == 0 || chip_type == 9) && (chip_ver == 0); - pr_info("axxia: Cross-cluster SEV fixup: %s\n", wfe_fixup ? "yes":"no"); + pr_info("axxia: Cross-cluster SEV fixup: %s\n", wfe_fixup ? "yes" : "no"); } static void __init do_fixup_sev(void) -- 1.7.9.5 -- _______________________________________________ linux-yocto mailing list [email protected] https://lists.yoctoproject.org/listinfo/linux-yocto
