aboutsummaryrefslogtreecommitdiff
path: root/src/ec/roda
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2018-07-07 00:30:40 +0200
committerFelix Held <felix-coreboot@felixheld.de>2018-07-26 18:19:17 +0000
commitc864958a484938ad47319119708b3bd28bcba867 (patch)
tree5ea8530c8d959710dcc92155d96b501e2b488640 /src/ec/roda
parent1d9199c60eae91cc09e9849f559da485e0490a94 (diff)
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 <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/27396 Reviewed-by: Alexander Couzens <lynxis@fe80.eu> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/ec/roda')
-rw-r--r--src/ec/roda/it8518/ec.c5
1 files changed, 2 insertions, 3 deletions
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 = {