aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/dev/mca/mca_bus.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/dev/mca/mca_bus.c b/sys/dev/mca/mca_bus.c
index 3ee8e8e1eb09..0400a44c0c25 100644
--- a/sys/dev/mca/mca_bus.c
+++ b/sys/dev/mca/mca_bus.c
@@ -461,12 +461,6 @@ mca_read_ivar (device_t dev, device_t child, int which, u_long * result)
return (0);
}
-static int
-mca_write_ivar(device_t dev, device_t child, int which, uintptr_t value)
-{
- return (EINVAL);
-}
-
static struct resource *
mca_alloc_resource (device_t dev, device_t child, int type, int *rid,
u_long start, u_long end, u_long count, u_int flags)
@@ -502,7 +496,7 @@ mca_get_resource_list (device_t dev, device_t child)
struct resource_list * rl = &m_dev->rl;
if (!rl)
- return (ENOENT);
+ return (NULL);
return (rl);
}