aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libmachdev/ds_routines.c4
-rw-r--r--libmachdev/trivfs_server.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/libmachdev/ds_routines.c b/libmachdev/ds_routines.c
index 0f8db7ed..c5a7cd00 100644
--- a/libmachdev/ds_routines.c
+++ b/libmachdev/ds_routines.c
@@ -68,7 +68,7 @@
#include <device/device.h> /* fallback to kernel device */
#include "device_S.h"
-#include "notify_S.h"
+#include "libports/notify_S.h"
#include "machdev-dev_hdr.h"
#include "machdev.h"
#include "mach_device.h"
@@ -333,7 +333,7 @@ machdev_demuxer (mach_msg_header_t *inp, mach_msg_header_t *outp)
{
mig_routine_t routine;
if ((routine = device_server_routine (inp)) ||
- (routine = notify_server_routine (inp)))
+ (routine = ports_notify_server_routine (inp)))
{
(*routine) (inp, outp);
return TRUE;
diff --git a/libmachdev/trivfs_server.c b/libmachdev/trivfs_server.c
index cf51fb9b..21684dab 100644
--- a/libmachdev/trivfs_server.c
+++ b/libmachdev/trivfs_server.c
@@ -38,7 +38,7 @@
#include "libdiskfs/diskfs.h"
#include "startup_notify_S.h"
#include "device_S.h"
-#include "notify_S.h"
+#include "libports/notify_S.h"
#include "fsys_S.h"
#include "mach_i386_S.h"