diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-15 16:47:33 -0700 |
---|---|---|
committer | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-16 04:12:47 +0100 |
commit | dfc8a560d7fec715a652f428dc3cab3e0a92c680 (patch) | |
tree | ef273e12fc78ab06f6c43c4ad5d144c87aca153d /src/cpu/x86/smm | |
parent | c5917079eb81b10c58cd3e7bfe6b3925baaf9241 (diff) |
cpu/x86: Fix misc. remaining issues detected by checkpatch
Fix the following error and warnings detected by checkpatch.pl:
ERROR: trailing statements should be on next line
WARNING: storage class should be at the beginning of the declaration
WARNING: type 'long unsigned int' should be specified in [[un]signed] [short|int|long|long long] order
TEST=Build and run on Galileo Gen2
Change-Id: I9cfe42cf1836cfd40ffcf67237c818543f508feb
Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com>
Reviewed-on: https://review.coreboot.org/18845
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/cpu/x86/smm')
-rw-r--r-- | src/cpu/x86/smm/smm_module_handler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/x86/smm/smm_module_handler.c b/src/cpu/x86/smm/smm_module_handler.c index 98ed1848a1..4bcd853b9a 100644 --- a/src/cpu/x86/smm/smm_module_handler.c +++ b/src/cpu/x86/smm/smm_module_handler.c @@ -116,7 +116,7 @@ void *smm_get_save_state(int cpu) return base; } -void asmlinkage smm_handler_start(void *arg) +asmlinkage void smm_handler_start(void *arg) { const struct smm_module_params *p; const struct smm_runtime *runtime; |