X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Fvfs%2Ffs%2Fext2.c;h=be50e6cab0d69ece536886acd0dcc88ce910d627;hb=95a7eaaa4a1065334125b65130866f8d1048ddb7;hp=8ee26aff039f4fe0b5474ea13268071e88a173ed;hpb=a8067bafb36f98612767060db856cd6bf36ef940;p=tpg%2Facess2.git diff --git a/Kernel/vfs/fs/ext2.c b/Kernel/vfs/fs/ext2.c index 8ee26aff..be50e6ca 100644 --- a/Kernel/vfs/fs/ext2.c +++ b/Kernel/vfs/fs/ext2.c @@ -69,7 +69,7 @@ int Ext2_Install(char **Arguments) } /** - \fn tVFS_Node *Ext2_initDevice(char *Device, char **Options) + \fn tVFS_Node *Ext2_InitDevice(char *Device, char **Options) \brief Initializes a device to be read by by the driver \param Device String - Device to read from \param Options NULL Terminated array of option strings @@ -336,7 +336,7 @@ addBlocks: } /** - * \fn void Ext2_CloseFile(vfs_node *Node) + * \fn void Ext2_CloseFile(tVFS_Node *Node) * \brief Close a file (Remove it from the cache) */ void Ext2_CloseFile(tVFS_Node *Node) @@ -487,11 +487,11 @@ int Ext2_MkNod(tVFS_Node *Parent, char *Name, Uint Flags) /** - \fn int Ext2_int_GetInode(vfs_node *Node, tExt2_Inode *Inode) - \brief Gets the inode descriptor for a node - \param node node to get the Inode of - \param inode Destination -*/ + * \fn int Ext2_int_GetInode(tVFS_Node *Node, tExt2_Inode *Inode) + * \brief Gets the inode descriptor for a node + * \param Node node to get the Inode of + * \param Inode Destination + */ int Ext2_int_GetInode(tVFS_Node *Node, tExt2_Inode *Inode) { return Ext2_int_ReadInode(Node->ImplPtr, Node->Inode, Inode);