From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephan Linz Date: Fri, 9 Jan 2004 17:12:50 +0100 Subject: [U-Boot-Users] [PATCH] small correction Message-ID: <04010917125003.30267@pcj86> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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