aboutsummaryrefslogtreecommitdiff
path: root/src/superio/renesas
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2018-07-06 21:53:41 +0200
committerFelix Held <felix-coreboot@felixheld.de>2018-07-25 09:27:22 +0000
commit552bc70c659aa2769b01be990651bf3d06465975 (patch)
tree3a6783610b15353388d009487a5c4dc45b981979 /src/superio/renesas
parentbbc3094441daf4290763e8b7c780cbe77141a9ad (diff)
superio/renesas: remove LDN-specific ops overrides
The pnp ops struct is already passed to the pnp_enable_devices function and it is used if no override is supplied in the elements of the pnp_info struct array Change-Id: I42469c844074db57071d0191d12d8fd64f462672 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/27390 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/superio/renesas')
-rw-r--r--src/superio/renesas/m3885x/superio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/superio/renesas/m3885x/superio.c b/src/superio/renesas/m3885x/superio.c
index 94f6a07a3b..f85a39d358 100644
--- a/src/superio/renesas/m3885x/superio.c
+++ b/src/superio/renesas/m3885x/superio.c
@@ -54,12 +54,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 superio_renesas_m3885x_ops = {