diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-11-27 17:02:10 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-01-23 14:43:49 +0000 |
commit | 2aa3b16a2b9489e9e98da5554c4babed9b6b224c (patch) | |
tree | ccc21727f2ec26981caf3f4bb64957ae3b340f83 /src/drivers/ricoh/rce822 | |
parent | 1d191273304d658fcf5a832c163c4230b1575127 (diff) | |
download | coreboot-2aa3b16a2b9489e9e98da5554c4babed9b6b224c.tar.xz |
src/drivers: Remove needless '&' on function pointers
Change-Id: I7a99d0dcbc8ea1362a12a68fa519c49058d30a05
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/29868
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/drivers/ricoh/rce822')
-rw-r--r-- | src/drivers/ricoh/rce822/rce822.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 = { |