Remove deprecated flash_avr_test method and generic clean at the code.
authorqwert <qwert@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 17 Jul 2008 16:29:31 +0000 (16:29 +0000)
committerqwert <qwert@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 17 Jul 2008 16:29:31 +0000 (16:29 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1490 38d2e660-2303-0410-9eaa-f027e97ec537

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

index ad350b299a9d52ff93bcb76b971ba614e7bc8619..c587c5270057387581b7283284628b93c93daf4f 100644 (file)
@@ -61,8 +61,6 @@
 #include <string.h>
 
 
-#if 1
-
 
 /**
  * Definition of type for avr flash module.
@@ -149,11 +147,10 @@ static void flash_avr_flush(void)
  * Write current buffered page in flash memory (if modified).
  * This function erase flash memory page before writing.
  */
-static int flash_avr_kfileFlush(struct KFile * fd)
+static int flash_avr_kfileFlush(UNUSED_ARG(struct KFile *,fd))
 {
 
        KFILEFLASHAVR(fd);
-       (void)fd;
        flash_avr_flush();
        return 0;
 }
@@ -300,5 +297,5 @@ void flash_avr_init(struct KFile *fd)
 
        flash_avr_open(fd);
 }
-#endif
+
 
index 390f648d92c78541329dd9741686e78cb05c1b22..c64fc699b34019d40d1163be810d999672fa8268 100644 (file)
@@ -69,8 +69,6 @@ INLINE KFileFlashAvr * KFILEFLASHAVR(KFile *fd)
 }
 
 
-
-bool flash_avr_test(void);
 void flash_avr_init(struct KFile *fd);