[U-Boot-Users] [PATCH] small correction

Stephan Linz linz at mazet.de
Fri Jan 9 17:12:50 CET 2004


Hi all,

   - avoid harmless warning: unused variable `piop'
     in board/altera/common/sevenseg.c



Best Regards,
Stephan Linz

-------------- next part --------------
diff -purN -x CVS u-boot-trigraph_files_fix/board/altera/common/sevenseg.c u-boot-unused_warn_fix/board/altera/common/sevenseg.c
--- u-boot-trigraph_files_fix/board/altera/common/sevenseg.c	Sat Jan  3 20:43:48 2004
+++ u-boot-unused_warn_fix/board/altera/common/sevenseg.c	Fri Jan  9 17:01:41 2004
@@ -44,7 +44,7 @@ static int sevenseg_init_done = 0;
 
 static inline void __sevenseg_set_masked (unsigned int mask, int value)
 {
-	nios_pio_t *piop = (nios_pio_t*)SEVENSEG_BASE;
+	nios_pio_t *piop __attribute__((unused)) = (nios_pio_t*)SEVENSEG_BASE;
 
 #ifdef	SEVENSEG_WRONLY	/* emulate read access */
 
@@ -97,7 +97,7 @@ static inline void __sevenseg_toggle_mas
 
 static inline void __sevenseg_set (unsigned int value)
 {
-	nios_pio_t *piop = (nios_pio_t*)SEVENSEG_BASE;
+	nios_pio_t *piop __attribute__((unused)) = (nios_pio_t*)SEVENSEG_BASE;
 
 #ifdef	SEVENSEG_WRONLY	/* emulate read access */
 
@@ -126,7 +126,7 @@ static inline void __sevenseg_set (unsig
 
 static inline void __sevenseg_init (void)
 {
-	nios_pio_t *piop = (nios_pio_t*)SEVENSEG_BASE;
+	nios_pio_t *piop __attribute__((unused)) = (nios_pio_t*)SEVENSEG_BASE;
 
 	__sevenseg_set(0);
 
-------------- next part --------------
* Patch by Stephan Linz, 09 Jan 2004
   - avoid harmless warning: unused variable `piop'
     in board/altera/common/sevenseg.c


More information about the U-Boot mailing list