More work on UDI, cleanup and pseudod should now load.
[tpg/acess2.git] / Kernel / vfs / fs / root.c
index e27c636..4772fa7 100644 (file)
@@ -2,6 +2,7 @@
  * AcessMicro VFS
  * - Root Filesystem Driver
  */
+#include <acess.h>
 #include <vfs.h>
 #include <vfs_ramfs.h>
 
@@ -9,7 +10,7 @@
 #define MAX_FILES      64
 
 // === PROTOTYPES ===
-tVFS_Node      *Root_InitDevice(char *Device, char *Options);
+tVFS_Node      *Root_InitDevice(char *Device, char **Options);
  int   Root_MkNod(tVFS_Node *Node, char *Name, Uint Flags);
 tVFS_Node      *Root_FindDir(tVFS_Node *Node, char *Name);
 char   *Root_ReadDir(tVFS_Node *Node, int Pos);
@@ -33,10 +34,10 @@ tVFS_ACL    RootFS_ACLs[3] = {
 
 // === CODE ===
 /**
- * \fn tVFS_Node *Root_InitDevice(char *Device, char *Options)
+ * \fn tVFS_Node *Root_InitDevice(char *Device, char **Options)
  * \brief Initialise the root filesystem
  */
-tVFS_Node *Root_InitDevice(char *Device, char *Options)
+tVFS_Node *Root_InitDevice(char *Device, char **Options)
 {
        tRamFS_File     *root;
        if(strcmp(Device, "root") != 0) {

UCC git Repository :: git.ucc.asn.au