diff options
author | Raul E Rangel <rrangel@chromium.org> | 2018-08-02 15:12:17 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-08-06 01:10:14 +0000 |
commit | 9ea7762e790a726c70a5e294fc8bbc0da4b69781 (patch) | |
tree | bec22615603e3eef32122b940089a71106e0c632 /src/cpu/x86 | |
parent | b978b61b4a740310e20d4eae8bf43172dc5575aa (diff) | |
download | coreboot-9ea7762e790a726c70a5e294fc8bbc0da4b69781.tar.xz |
mp_init: fix typo
BUG=none
TEST=none
Change-Id: Ic2d7bf5f5335894ede98dc7e6cc6a65e4897e487
Signed-off-by: Raul E Rangel <rrangel@chromium.org>
Reviewed-on: https://review.coreboot.org/27811
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/cpu/x86')
-rw-r--r-- | src/cpu/x86/mp_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/x86/mp_init.c b/src/cpu/x86/mp_init.c index 515bc676c4..d124721bd0 100644 --- a/src/cpu/x86/mp_init.c +++ b/src/cpu/x86/mp_init.c @@ -944,7 +944,7 @@ static void ap_wait_for_instruction(void) continue; } - /* Copy to local variable before signalling consumption. */ + /* Copy to local variable before signaling consumption. */ memcpy(&lcb, cb, sizeof(lcb)); mfence(); store_callback(per_cpu_slot, NULL); |