aboutsummaryrefslogtreecommitdiff
path: root/device/dev_name.c
diff options
context:
space:
mode:
Diffstat (limited to 'device/dev_name.c')
-rw-r--r--device/dev_name.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/device/dev_name.c b/device/dev_name.c
index 59ea961b..13ff6dc9 100644
--- a/device/dev_name.c
+++ b/device/dev_name.c
@@ -39,7 +39,7 @@
/*
* Routines placed in empty entries in the device tables
*/
-int nulldev(void)
+int nulldev_reset(dev_t)
{
return (D_SUCCESS);
}
@@ -78,7 +78,12 @@ int nulldev_portdeath(dev_t dev, mach_port_t port)
return (D_SUCCESS);
}
-int nodev(void)
+int nodev_async_in(dev_t, const ipc_port_t, int, filter_t*, unsigned int)
+{
+ return (D_INVALID_OPERATION);
+}
+
+int nodev_info(dev_t, int, int*)
{
return (D_INVALID_OPERATION);
}