diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-16 17:30:09 -0700 |
---|---|---|
committer | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-17 02:35:47 +0100 |
commit | 6598b91fe34fe9e6e6fbea592ead5e4fc2900551 (patch) | |
tree | 42b70feec4183be3a87249d73565bb1a56c1c5e6 /src/soc/intel/braswell/include | |
parent | f4c4ab9826b521666d5ba887e69a636428ac9eb2 (diff) |
soc/intel/braswell: Fix spacing issues detected by checkpatch
Fix the following errors and warnings detected by checkpatch.pl:
ERROR: space required after that ',' (ctx:VxV)
ERROR: space prohibited before that ',' (ctx:WxE)
ERROR: spaces required around that '=' (ctx:WxV)
ERROR: code indent should use tabs where possible
WARNING: space prohibited between function name and open parenthesis '('
WARNING: please, no spaces at the start of a line
TEST=Build for cyan
Change-Id: I84d4204585b498b695608c5008fdfb7961e2416f
Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com>
Reviewed-on: https://review.coreboot.org/18869
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/soc/intel/braswell/include')
-rw-r--r-- | src/soc/intel/braswell/include/soc/gpio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/braswell/include/soc/gpio.h b/src/soc/intel/braswell/include/soc/gpio.h index 3c56f6ae32..4abc9f47bf 100644 --- a/src/soc/intel/braswell/include/soc/gpio.h +++ b/src/soc/intel/braswell/include/soc/gpio.h @@ -315,7 +315,7 @@ | PAD_GPIO_ENABLE | PAD_GPIOFG_GPI \ | PAD_INT_SEL(int_sel), \ .pad_conf1 = PAD_TRIG_EDGE_LOW | PAD_CONFIG1_DEFAULT0, \ - .int_mask = 1 ,\ + .int_mask = 1,\ .wake_mask = 1 } #define GPIO_SMI(int_sel) \ |