Little re-indentation
authorqwert <qwert@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 18 Jul 2008 13:22:42 +0000 (13:22 +0000)
committerqwert <qwert@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 18 Jul 2008 13:22:42 +0000 (13:22 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1498 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/avr/drv/flash_avr.c
bertos/cpu/avr/drv/flash_avr.h

index 76023a29af1dd655760c85d6ea3b933d64506df7..fc87fec547f725f5a9e6a2bac9be2090402ba5c3 100644 (file)
@@ -70,7 +70,7 @@ typedef uint16_t avr_page_addr_t;
 
 
 
-/*
+/**
  * Private avr flush funtion.
  *
  * Write current buffered page in flash memory (if modified).
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];