diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-09 10:10:25 -0800 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-03-13 17:46:40 +0100 |
commit | d8fb362ea0d1ae332d35ef7a62e64a372fe96712 (patch) | |
tree | 0c654c36234b828c36a5aade81e7208c2416c621 /src/soc/intel/apollolake/elog.c | |
parent | 0096d07274e067c7f6ec06f5cb658f79484b036f (diff) |
soc/intel/apollolake: Fix parenthesis issues
Fix the following errors and warning detected by checkpatch.pl:
ERROR: space required before the open parenthesis '('
ERROR: space prohibited before that close parenthesis ')'
ERROR: return is not a function, parentheses are not required
WARNING: space prohibited between function name and open parenthesis '('
TEST=Build for reef
Change-Id: I31f854adf3269ba6f77c4044fb3748bb1957841c
Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com>
Reviewed-on: https://review.coreboot.org/18725
Tested-by: build bot (Jenkins)
Reviewed-by: Philippe Mathieu-Daudé <philippe.mathieu.daude@gmail.com>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/soc/intel/apollolake/elog.c')
-rw-r--r-- | src/soc/intel/apollolake/elog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/apollolake/elog.c b/src/soc/intel/apollolake/elog.c index 4c4f197cfe..f061188755 100644 --- a/src/soc/intel/apollolake/elog.c +++ b/src/soc/intel/apollolake/elog.c @@ -49,7 +49,7 @@ static void pch_log_wake_source(struct chipset_power_state *ps) elog_add_event_wake(ELOG_WAKE_SOURCE_PCIE, 0); /* PME */ - if(ps->gpe0_sts[GPE0_A] & CSE_PME_STS) + if (ps->gpe0_sts[GPE0_A] & CSE_PME_STS) elog_add_event_wake(ELOG_WAKE_SOURCE_PME, 0); /* SMBUS Wake */ |