First commit to cleanup log module documentation.
[bertos.git] / bertos / io / kfile_block.h
index 40aed6762472108cf206b74b78080a64d53daa44..70fd681e7e30a5a5c64dfbccad76ba55c685972c 100644 (file)
  * With this module, you can access a KBlock device
  * with the handy KFile interface.
  * In order to achieve this, the block device must support partial block write.
+ *
+ * \author Francesco Sacchi <batt@develer.com>
+ * \author Daniele Basile <asterix@develer.com>
+ *
+ * $WIZ$ module_name = "kfile_block"
+ * $WIZ$ module_depends = "kfile", "kblock"
  */
 
 #ifndef IO_KFILE_BLOCK_H
@@ -49,7 +55,7 @@
  */
 typedef struct KFileBlock
 {
-       KFile fd;  ///< KFile context
+       KFile fd;    ///< KFile context
        KBlock *blk; ///< KBlock device
 } KFileBlock;
 
@@ -57,7 +63,7 @@ typedef struct KFileBlock
  * Init a KFile over KBlock.
  * After this you can access your KBlock device with a handy KFile interface.
  *
- * \note The block device must support partial block write in order support
+ * \note The block device must support partial block write in order to support
  *       random write access.
  *
  * \param fb KFileBlock context.