summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/KernelKit/DeviceMgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'dev/kernel/KernelKit/DeviceMgr.h')
-rw-r--r--dev/kernel/KernelKit/DeviceMgr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/kernel/KernelKit/DeviceMgr.h b/dev/kernel/KernelKit/DeviceMgr.h
index 8da52699..210cef2a 100644
--- a/dev/kernel/KernelKit/DeviceMgr.h
+++ b/dev/kernel/KernelKit/DeviceMgr.h
@@ -22,7 +22,7 @@
#include <NewKit/ErrorOr.h>
#include <NewKit/Ref.h>
-#define kDeviceMgrRootDirPath "/dev/"
+#define kDeviceMgrRootDirPath "/devices/"
#define NE_DEVICE : public ::Kernel::IDeviceObject
@@ -58,7 +58,7 @@ class IDeviceObject {
return *this;
}
- virtual const char* Name() const { return "/dev/null"; }
+ virtual const char* Name() const { return "/devices/null"; }
operator bool() { return fOut && fIn; }