diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-07-08 23:25:05 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-07-10 09:21:32 +0000 |
commit | 571b7b211893e09c05287dda773579d367df548c (patch) | |
tree | a0e02006b79e84c127848d0789f6cf3320524b8f /src/southbridge/intel/i82801ix/smi.c | |
parent | eac7023f848599f023cc07a95a32040da711a700 (diff) | |
download | coreboot-571b7b211893e09c05287dda773579d367df548c.tar.xz |
intel/i82801ix: Rename smm_lock() prototype
This southbridge code may be built with either ASEG or TSEG.
Fix minor collision in namespaces.
Change-Id: I04f90fb308c280621a3037fee4bece1e5655480e
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/34153
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/southbridge/intel/i82801ix/smi.c')
-rw-r--r-- | src/southbridge/intel/i82801ix/smi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/i82801ix/smi.c b/src/southbridge/intel/i82801ix/smi.c index a9d5e7dc08..5d898cc3c6 100644 --- a/src/southbridge/intel/i82801ix/smi.c +++ b/src/southbridge/intel/i82801ix/smi.c @@ -171,7 +171,7 @@ void smm_init_completion(void) restore_default_smm_area(default_smm_area); } -void smm_lock(void) +void aseg_smm_lock(void) { /* LOCK the SMM memory window and enable normal SMM. * After running this function, only a full reset can |