From: John Hodge Date: Wed, 20 Jun 2012 14:57:25 +0000 (+0800) Subject: Kernel - Moved node type to the beginning of tVFS_Node X-Git-Tag: rel0.15~611^2~49 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;ds=sidebyside;h=5a03a88a4e1a71c794569015e0ec94e93d3a7350;hp=1df83575504bc5b2d7d9977268d3ccad6a0b6209;p=tpg%2Facess2.git Kernel - Moved node type to the beginning of tVFS_Node --- diff --git a/KernelLand/Kernel/include/vfs.h b/KernelLand/Kernel/include/vfs.h index b746d0e7..f2bf3212 100644 --- a/KernelLand/Kernel/include/vfs.h +++ b/KernelLand/Kernel/include/vfs.h @@ -90,6 +90,11 @@ typedef struct sVFS_NodeType tVFS_NodeType; */ typedef struct sVFS_Node { + /** + * \brief Functions associated with the node + */ + tVFS_NodeType *Type; + /** * \name Identifiers * \brief Fields used by the driver to identify what data this node @@ -178,11 +183,6 @@ typedef struct sVFS_Node /** * \} */ - - /** - * \brief Functions associated with the node - */ - tVFS_NodeType *Type; } tVFS_Node; /**