diff options
Diffstat (limited to 'libmachdev/ds_routines.c')
-rw-r--r-- | libmachdev/ds_routines.c | 13 |
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) { |