summaryrefslogtreecommitdiff
path: root/src/superio/winbond/w83627thg/superio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/superio/winbond/w83627thg/superio.c')
-rw-r--r--src/superio/winbond/w83627thg/superio.c21
1 files changed, 3 insertions, 18 deletions
diff --git a/src/superio/winbond/w83627thg/superio.c b/src/superio/winbond/w83627thg/superio.c
index 70d0c3d8d0..f1c56032c5 100644
--- a/src/superio/winbond/w83627thg/superio.c
+++ b/src/superio/winbond/w83627thg/superio.c
@@ -55,21 +55,6 @@ static void w83627thg_init(device_t dev)
}
}
-static void w83627thg_set_resources(device_t dev)
-{
- pnp_set_resources(dev);
-}
-
-static void w83627thg_enable_resources(device_t dev)
-{
- pnp_enable_resources(dev);
-}
-
-static void w83627thg_enable(device_t dev)
-{
- pnp_enable(dev);
-}
-
static const struct pnp_mode_ops pnp_conf_mode_ops = {
.enter_conf_mode = w83627thg_enter_ext_func_mode,
.exit_conf_mode = w83627thg_exit_ext_func_mode,
@@ -77,9 +62,9 @@ static const struct pnp_mode_ops pnp_conf_mode_ops = {
static struct device_operations ops = {
.read_resources = pnp_read_resources,
- .set_resources = w83627thg_set_resources,
- .enable_resources = w83627thg_enable_resources,
- .enable = w83627thg_enable,
+ .set_resources = pnp_set_resources,
+ .enable_resources = pnp_enable_resources,
+ .enable = pnp_enable,
.init = w83627thg_init,
.ops_pnp_mode = &pnp_conf_mode_ops,
};