Little re-indentation
[bertos.git] / bertos / cpu / avr / drv / flash_avr.h
index 99abf9a1830583397d3b7e8b5b44e2468e058cc8..11838ebacf466864e28a29d64231a087ed1c0bde 100644 (file)
@@ -57,24 +57,24 @@ typedef uint16_t avr_page_t;
 typedef struct KFileFlashAvr
 {
        /**
-       * File descriptor.
-       */
+        * File descriptor.
+        */
        KFile fd;
 
        /**
-       * Current buffered page.
-       */
+        * Current buffered page.
+        */
        avr_page_t curr_page;
 
        /**
-       * Flag for checking if current page is modified.
-       */
+        * Flag for checking if current page is modified.
+        */
        bool page_dirty;
 
        /**
-       * Temporary buffer cointaing data block to
-       * write on flash.
-       */
+        * Temporary buffer cointaing data block to
+        * write on flash.
+        */
        uint8_t page_buf[SPM_PAGESIZE];