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>
This commit is contained in:
committed by
Patrick Georgi
parent
1d19127330
commit
2aa3b16a2b
@@ -193,8 +193,8 @@ static struct device_operations i2c_generic_ops = {
|
||||
.set_resources = DEVICE_NOOP,
|
||||
.enable_resources = DEVICE_NOOP,
|
||||
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
|
||||
.acpi_name = &i2c_generic_acpi_name,
|
||||
.acpi_fill_ssdt_generator = &i2c_generic_fill_ssdt_generator,
|
||||
.acpi_name = i2c_generic_acpi_name,
|
||||
.acpi_fill_ssdt_generator = i2c_generic_fill_ssdt_generator,
|
||||
#endif
|
||||
};
|
||||
|
||||
@@ -228,5 +228,5 @@ static void i2c_generic_enable(struct device *dev)
|
||||
|
||||
struct chip_operations drivers_i2c_generic_ops = {
|
||||
CHIP_NAME("I2C Device")
|
||||
.enable_dev = &i2c_generic_enable
|
||||
.enable_dev = i2c_generic_enable
|
||||
};
|
||||
|
Reference in New Issue
Block a user