From 2aa3b16a2b9489e9e98da5554c4babed9b6b224c Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Tue, 27 Nov 2018 17:02:10 +0100 Subject: src/drivers: Remove needless '&' on function pointers Change-Id: I7a99d0dcbc8ea1362a12a68fa519c49058d30a05 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/c/29868 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- src/drivers/ricoh/rce822/rce822.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/drivers/ricoh') diff --git a/src/drivers/ricoh/rce822/rce822.c b/src/drivers/ricoh/rce822/rce822.c index b16b05a91c..d576762989 100644 --- a/src/drivers/ricoh/rce822/rce822.c +++ b/src/drivers/ricoh/rce822/rce822.c @@ -51,7 +51,7 @@ static void rce822_set_subsystem(struct device *dev, unsigned int vendor, } static struct pci_operations lops_pci = { - .set_subsystem = &rce822_set_subsystem, + .set_subsystem = rce822_set_subsystem, }; static struct device_operations rce822_ops = { -- cgit v1.2.3