From 8c246bd611775a1e529e58c3cc916eca492518a0 Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Thu, 9 Mar 2017 09:53:58 -0800 Subject: [PATCH] UPSTREAM: soc/intel/apollolake: Move brace to beginning of line Fix the following error detected by checkpatch.pl: ERROR: open brace '{' following function declarations go on the next line TEST=Build for reef Change-Id: I15fbc181c58350a6a426d225e6057e9638e52602 Signed-off-by: Patrick Georgi Original-Commit-Id: bab8be229a0631a00a9680485bd6c200c3b290af Original-Change-Id: Icb92dc49c6e7b8dfea60bc0395f3db7316c4e34c Original-Signed-off-by: Lee Leahy Original-Reviewed-on: https://review.coreboot.org/18722 Original-Tested-by: build bot (Jenkins) Original-Reviewed-by: Martin Roth Reviewed-on: https://chromium-review.googlesource.com/454560 --- src/soc/intel/apollolake/chip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/soc/intel/apollolake/chip.c b/src/soc/intel/apollolake/chip.c index 975d09840b..61ffc38a90 100644 --- a/src/soc/intel/apollolake/chip.c +++ b/src/soc/intel/apollolake/chip.c @@ -327,8 +327,8 @@ static void soc_final(void *data) global_reset_lock(); } -static void disable_dev(struct device *dev, FSP_S_CONFIG *silconfig) { - +static void disable_dev(struct device *dev, FSP_S_CONFIG *silconfig) +{ switch (dev->path.pci.devfn) { case ISH_DEVFN: silconfig->IshEnable = 0;