From c864958a484938ad47319119708b3bd28bcba867 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Sat, 7 Jul 2018 00:30:40 +0200 Subject: ec/roda: pass ops to pnp_enable_devices instead of LDN-specific override Since ops was passed as override in the pnp_dev_info struct, the generic pnp_ops that was passed to pnp_enable_devices was never used. Change-Id: Ic35a232a9867936d3d84aa275ae50e3e3dd9bf97 Signed-off-by: Felix Held Reviewed-on: https://review.coreboot.org/27396 Reviewed-by: Alexander Couzens Tested-by: build bot (Jenkins) --- src/ec/roda/it8518/ec.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/ec') diff --git a/src/ec/roda/it8518/ec.c b/src/ec/roda/it8518/ec.c index 99ce5062ca..4e69d116ab 100644 --- a/src/ec/roda/it8518/ec.c +++ b/src/ec/roda/it8518/ec.c @@ -53,13 +53,12 @@ static struct device_operations ops = { }; static struct pnp_info pnp_dev_info[] = { - { &ops, 0, 0, 0, } + { NULL, 0, 0, 0, } }; static void enable_dev(struct device *dev) { - pnp_enable_devices(dev, &pnp_ops, ARRAY_SIZE(pnp_dev_info), - pnp_dev_info); + pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info); } struct chip_operations ec_roda_it8518_ops = { -- cgit v1.2.3