diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2001-01-19 09:29:34 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2001-01-19 09:29:34 +0000 |
| commit | 79bd95a632e40c21abbf64b7ea42ec8ced60a60d (patch) | |
| tree | 92c969e72f49b1b5c235c0ae0a57603352cf1dbc /sys/dev/mca | |
| parent | 26379603c0e96301de52a3f1612a688fbbddecff (diff) | |
Notes
Diffstat (limited to 'sys/dev/mca')
| -rw-r--r-- | sys/dev/mca/mca_bus.c | 8 |
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); } |
