From 5592798865ece858bab2b444bc782d19121e2566 Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Sat, 6 Feb 2016 17:21:19 -0800 Subject: style: fix missing spaces in control statements Result of running 'hg m5style --skip-all --fix-control -a'. --- src/arch/arm/linux/system.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/arch/arm/linux') diff --git a/src/arch/arm/linux/system.cc b/src/arch/arm/linux/system.cc index fc13e8cf5..4b3135bfc 100644 --- a/src/arch/arm/linux/system.cc +++ b/src/arch/arm/linux/system.cc @@ -83,7 +83,7 @@ LinuxArmSystem::LinuxArmSystem(Params *p) // newer kernels use __loop_udelay and __loop_const_udelay symbols uDelaySkipEvent = addKernelFuncEvent( "__loop_udelay", "__udelay", 1000, 0); - if(!uDelaySkipEvent) + if (!uDelaySkipEvent) uDelaySkipEvent = addKernelFuncEventOrPanic( "__udelay", "__udelay", 1000, 0); @@ -91,7 +91,7 @@ LinuxArmSystem::LinuxArmSystem(Params *p) // time. Constant comes from code. constUDelaySkipEvent = addKernelFuncEvent( "__loop_const_udelay", "__const_udelay", 1000, 107374); - if(!constUDelaySkipEvent) + if (!constUDelaySkipEvent) constUDelaySkipEvent = addKernelFuncEventOrPanic( "__const_udelay", "__const_udelay", 1000, 107374); -- cgit v1.2.3