From e4fbfd4ec33782dc857fbc6b00afdf9d7a1a96b7 Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Wed, 8 Mar 2017 10:15:03 -0800 Subject: [PATCH] UPSTREAM: src/include: Add space after minus sign Fix the following error detected by checkpatch.pl: ERROR: need consistent spacing around '-' (ctx:WxV) TEST=Build and run on Galileo Gen2 Change-Id: I157d2d382c2dde9bad1dd0a0d7ae50dc2d13ab49 Signed-off-by: Patrick Georgi Original-Commit-Id: d0f26fcea2fdab02d9b9fc1fceb9e782694a55bc Original-Change-Id: Ib4c2c0c19dee842b7cd4da11a47215dc2f124374 Original-Signed-off-by: Lee Leahy Original-Reviewed-on: https://review.coreboot.org/18686 Original-Tested-by: build bot (Jenkins) Original-Reviewed-by: Philippe Mathieu-Daud Original-Reviewed-by: Martin Roth Reviewed-on: https://chromium-review.googlesource.com/454558 --- src/include/cpu/x86/mtrr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/cpu/x86/mtrr.h b/src/include/cpu/x86/mtrr.h index e4e1f9b8e5..99715ed4e6 100644 --- a/src/include/cpu/x86/mtrr.h +++ b/src/include/cpu/x86/mtrr.h @@ -132,7 +132,7 @@ static inline unsigned int fls(unsigned int x) */ #define CACHE_TMP_RAMTOP (16<<20) -#if ((CONFIG_XIP_ROM_SIZE & (CONFIG_XIP_ROM_SIZE -1)) != 0) +#if ((CONFIG_XIP_ROM_SIZE & (CONFIG_XIP_ROM_SIZE - 1)) != 0) # error "CONFIG_XIP_ROM_SIZE is not a power of 2" #endif