summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2020-07-11 14:58:54 +1000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-07-18 17:02:58 +0200
commit30c034165b783f9365cf889fc7915806cd5feab7 (patch)
tree03c4724cd144460827f5ea31998a906c31b62448
parent7d3a63f4e88b4a7f54bfe72904ee33239bf0e620 (diff)
libmachdev: Add new RPC server stubs for ds_device_intr_*
-rw-r--r--libmachdev/ds_routines.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/libmachdev/ds_routines.c b/libmachdev/ds_routines.c
index f4044b72..da5e47e2 100644
--- a/libmachdev/ds_routines.c
+++ b/libmachdev/ds_routines.c
@@ -274,6 +274,19 @@ ds_device_map (struct mach_device *device, vm_prot_t prot, vm_offset_t offset,
}
+kern_return_t
+ds_device_intr_register (mach_device_t dev, int id, int flags,
+ mach_port_t receive_port)
+{
+ return D_INVALID_OPERATION;
+}
+
+kern_return_t
+ds_device_intr_ack (mach_device_t dev, mach_port_t receive_port)
+{
+ return D_INVALID_OPERATION;
+}
+
error_t
machdev_create_device_port (size_t size, void *result)
{