summaryrefslogtreecommitdiff
path: root/libmachdev
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2011-08-23 02:57:02 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2011-08-23 02:57:02 +0200
commitb9a3510bd830ed5c273347cf87080574a636fa8e (patch)
tree0cb61117edeeb70fb94693db52b803ef5d1601c3 /libmachdev
parentefb3fcb360327b71ef4836f60eda77ac0cab76f3 (diff)
rename device_intr_notify into device_intr_register
Diffstat (limited to 'libmachdev')
-rw-r--r--libmachdev/device.defs2
-rw-r--r--libmachdev/ds_routines.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libmachdev/device.defs b/libmachdev/device.defs
index 3b39297a..d8968869 100644
--- a/libmachdev/device.defs
+++ b/libmachdev/device.defs
@@ -149,7 +149,7 @@ routine device_set_filter(
in filter : filter_array_t
);
-routine device_intr_notify(
+routine device_intr_register(
master_port : mach_port_t;
in irq : int;
in id : int;
diff --git a/libmachdev/ds_routines.c b/libmachdev/ds_routines.c
index cc4b74f6..6b8d1d4d 100644
--- a/libmachdev/ds_routines.c
+++ b/libmachdev/ds_routines.c
@@ -148,7 +148,7 @@ ds_xxx_device_set_filter (device_t device, mach_port_t rec,
}
io_return_t
-ds_device_intr_notify (mach_port_t master_port, int irq,
+ds_device_intr_register (mach_port_t master_port, int irq,
int id, mach_port_t receive_port)
{
return D_INVALID_OPERATION;