diff options
author | Angel Pons <th3fanbus@gmail.com> | 2018-10-01 09:56:32 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2018-10-02 11:13:44 +0000 |
commit | cac2217c938dd615080b52405fc4b348399d4cb5 (patch) | |
tree | 4cdc53105837753fa17771c72c2e39bc730dc24c /src/soc/intel/broadwell | |
parent | 205d5ab20842e57ffd90b78e9d71db7e58516917 (diff) |
src/soc/intel/broadwell/me.c: Correct HMRFPO misspelling
`HMRFPO` was spelled as `HMRPFO` twice.
Change-Id: Ibd04004ac5edcdeee49a6a69fcdd5c73603e92e2
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/28848
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/soc/intel/broadwell')
-rw-r--r-- | src/soc/intel/broadwell/me.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/broadwell/me.c b/src/soc/intel/broadwell/me.c index ae0f48f206..f8b3be9f63 100644 --- a/src/soc/intel/broadwell/me.c +++ b/src/soc/intel/broadwell/me.c @@ -589,7 +589,7 @@ static int mkhi_hmrfpo_lock(void) return -1; } - printk(BIOS_INFO, "ME: HMRPFO LOCK message successful (%d)\n", ack); + printk(BIOS_INFO, "ME: HMRFPO LOCK message successful (%d)\n", ack); return 0; } @@ -607,7 +607,7 @@ static int mkhi_hmrfpo_lock_noack(void) return -1; } - printk(BIOS_INFO, "ME: HMRPFO LOCK NOACK message successful\n"); + printk(BIOS_INFO, "ME: HMRFPO LOCK NOACK message successful\n"); return 0; } |