diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-09 09:53:58 -0800 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-03-13 17:39:52 +0100 |
commit | bab8be229a0631a00a9680485bd6c200c3b290af (patch) | |
tree | 28cfe780268fea6b08fa99e68dc4c084de5b00bc /src | |
parent | 6a566d7fbee8e81fa22916a29339e5991872edfb (diff) | |
download | coreboot-bab8be229a0631a00a9680485bd6c200c3b290af.tar.xz |
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: Icb92dc49c6e7b8dfea60bc0395f3db7316c4e34c
Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com>
Reviewed-on: https://review.coreboot.org/18722
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/apollolake/chip.c | 4 |
1 files 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; |