soc/{amd,intel}: Remove needless '&' on function pointers

Change-Id: I7a59fd2f370d2b0d830ca83be9a9bc1abe2750f5
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/29862
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Alex Thiessen <alex.thiessen.de+coreboot@gmail.com>
This commit is contained in:
Elyes HAOUAS
2018-11-27 12:23:48 +01:00
committed by Patrick Georgi
parent b28d8b68ba
commit 1d19127330
26 changed files with 106 additions and 106 deletions

View File

@@ -679,9 +679,9 @@ void platform_fsp_silicon_init_params_cb(FSPS_UPD *silupd)
struct chip_operations soc_intel_apollolake_ops = {
CHIP_NAME("Intel Apollolake SOC")
.enable_dev = &enable_dev,
.init = &soc_init,
.final = &soc_final
.enable_dev = enable_dev,
.init = soc_init,
.final = soc_final
};
static void drop_privilege_all(void)