From 7769a2f5bac21658e76ddc5d595b9b00ae638dde Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Tue, 7 Mar 2017 13:00:08 -0800 Subject: [PATCH] UPSTREAM: src/include: Remove space after & Fix the following error detected by checkpatch.pl: ERROR: space prohibited after that '&' (ctx:ExW) TEST=Build and run on Galileo Gen2 Change-Id: I2e92383212828c67c4ac71d0d11acd7e5e190ffc Signed-off-by: Patrick Georgi Original-Commit-Id: 18cb7e66bd52d68e59191d0d98236973213e6515 Original-Change-Id: Ied8b4c00fc57a35ed4d649264a5ff1b8dcc6a1cd Original-Signed-off-by: Lee Leahy Original-Reviewed-on: https://review.coreboot.org/18648 Original-Tested-by: build bot (Jenkins) Original-Reviewed-by: Martin Roth Reviewed-on: https://chromium-review.googlesource.com/452878 --- src/include/bootstate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/bootstate.h b/src/include/bootstate.h index 66f3dcc70d..26598f7078 100644 --- a/src/include/bootstate.h +++ b/src/include/bootstate.h @@ -197,7 +197,7 @@ struct boot_state_init_entry { }; \ static struct boot_state_init_entry * \ bsie_ ## func_ ##_## state_ ##_## when_ BOOT_STATE_INIT_ATTR = \ - & func_ ##_## state_ ##_## when_; + &func_ ##_## state_ ##_## when_; /* Hook per arch when coreboot is exiting to payload or ACPI OS resume. It's * the very last thing done before the transition. */