From 30c034165b783f9365cf889fc7915806cd5feab7 Mon Sep 17 00:00:00 2001 From: Damien Zammit Date: Sat, 11 Jul 2020 14:58:54 +1000 Subject: libmachdev: Add new RPC server stubs for ds_device_intr_* --- libmachdev/ds_routines.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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) { -- cgit v1.2.3