X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=KernelLand%2FKernel%2Fvfs%2Ffs%2Fdevfs.c;h=ec6c7e2fa29d55b41412c6b08ba99387dc6f0c4b;hb=015f48988e0ff398409d71dfc692005ab439490a;hp=93898226810b9277f0e2d5e4b2e168db9b087dae;hpb=e4342ad9de52043cb8f820643794dc44076f9bd9;p=tpg%2Facess2.git diff --git a/KernelLand/Kernel/vfs/fs/devfs.c b/KernelLand/Kernel/vfs/fs/devfs.c index 93898226..ec6c7e2f 100644 --- a/KernelLand/Kernel/vfs/fs/devfs.c +++ b/KernelLand/Kernel/vfs/fs/devfs.c @@ -16,7 +16,7 @@ void DevFS_DelDevice(tDevFS_Driver *Device); tVFS_Node *DevFS_InitDevice(const char *Device, const char **Options); void DevFS_Unmount(tVFS_Node *RootNode); int DevFS_ReadDir(tVFS_Node *Node, int Pos, char Dest[FILENAME_MAX]); -tVFS_Node *DevFS_FindDir(tVFS_Node *Node, const char *Name); +tVFS_Node *DevFS_FindDir(tVFS_Node *Node, const char *Name, Uint Flags); // === GLOBALS === tVFS_Driver gDevFS_Info = { @@ -152,7 +152,7 @@ int DevFS_ReadDir(tVFS_Node *Node, int Pos, char Dest[FILENAME_MAX]) * \fn tVFS_Node *DevFS_FindDir(tVFS_Node *Node, const char *Name) * \brief Get an entry from the devices directory */ -tVFS_Node *DevFS_FindDir(tVFS_Node *Node, const char *Name) +tVFS_Node *DevFS_FindDir(tVFS_Node *Node, const char *Name, Uint Flags) { tDevFS_Driver *dev;