UPSTREAM: drivers/intel/fsp2_0: Add space before *
Fix the following error detected by checkpatch.pl:
ERROR: "(foo*)" should be "(foo *)"
False positives are generated by checkpatch for the following condition
which is not properly detecting the variable type:
ERROR: need consistent spacing around '*' (ctx:WxV)
The false positives are found in debug.h and upd_display.c
TEST=Build and run on Galileo Gen2
Change-Id: Ia1a03a6f4df599f8742790d558d400668a8d8fca
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: 27de768112
Original-Change-Id: I0e871d64544ebf5eacbae46466cf7aefbfa701eb
Original-Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com>
Original-Reviewed-on: https://review.coreboot.org/18743
Original-Tested-by: build bot (Jenkins)
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/453363
This commit is contained in:
parent
f96a2cd575
commit
ceeb67af66
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ static void fsp_notify(enum fsp_notify_phase phase)
|
|||
if (!fsps_hdr.notify_phase_entry_offset)
|
||||
die("Notify_phase_entry_offset is zero!\n");
|
||||
|
||||
fspnotify = (void*) (fsps_hdr.image_base +
|
||||
fspnotify = (void *) (fsps_hdr.image_base +
|
||||
fsps_hdr.notify_phase_entry_offset);
|
||||
fsp_before_debug_notify(fspnotify, ¬ify_params);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue