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>
diff --git a/src/soc/intel/denverton_ns/chip.c b/src/soc/intel/denverton_ns/chip.c
index d0a21ac..0f3c8a0 100644
--- a/src/soc/intel/denverton_ns/chip.c
+++ b/src/soc/intel/denverton_ns/chip.c
@@ -123,9 +123,9 @@
 
 struct chip_operations soc_intel_denverton_ns_ops = {
 	CHIP_NAME("Intel Denverton-NS SOC")
-	.enable_dev = &soc_enable_dev,
-	.init = &soc_init,
-	.final = &soc_final
+	.enable_dev = soc_enable_dev,
+	.init = soc_init,
+	.final = soc_final
 };
 
 static void soc_set_subsystem(struct device *dev, uint32_t vendor,