From 57f524fd62ab9b76dd4850e907dcbd338eb7706f Mon Sep 17 00:00:00 2001 From: Sven Schnelle Date: Wed, 20 Jun 2012 09:14:08 +0200 Subject: mptable: remove unused variable Change-Id: I1ff7e040b5aafcdb05a3669158ae94551981e747 Signed-off-by: Sven Schnelle Reviewed-on: http://review.coreboot.org/1109 Tested-by: build bot (Jenkins) --- util/mptable/mptable.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'util/mptable') diff --git a/util/mptable/mptable.c b/util/mptable/mptable.c index 9488e36573..7c3033e005 100644 --- a/util/mptable/mptable.c +++ b/util/mptable/mptable.c @@ -731,7 +731,7 @@ MPConfigTableHeader( uint32_t pap ) vm_offset_t paddr; mpcth_t cth; int x; - int totalSize, t; + int totalSize; int count, c; int type; @@ -804,7 +804,7 @@ MPConfigTableHeader( uint32_t pap ) printf( "--\nProcessors:\tAPIC ID\tVersion\tState" "\t\tFamily\tModel\tStep\tFlags\n" ); } - for ( t = totalSize, c = count; c; c-- ) { + for ( c = count; c; c-- ) { if ( readType() == 0 ) processorEntry(); totalSize -= basetableEntryTypes[ 0 ].length; @@ -812,7 +812,7 @@ MPConfigTableHeader( uint32_t pap ) /* process all the busses */ printf( "/*Bus:\t\tBus ID\tType*/\n" ); - for ( t = totalSize, c = count; c; c-- ) { + for ( c = count; c; c-- ) { if ( readType() == 1 ) busEntry(); totalSize -= basetableEntryTypes[ 1 ].length; @@ -820,7 +820,7 @@ MPConfigTableHeader( uint32_t pap ) /* process all the apics */ printf( "/*I/O APICs:\tAPIC ID\tVersion\tState\t\tAddress*/\n" ); - for ( t = totalSize, c = count; c; c-- ) { + for ( c = count; c; c-- ) { if ( readType() == 2 ) ioApicEntry(); totalSize -= basetableEntryTypes[ 2 ].length; @@ -828,7 +828,7 @@ MPConfigTableHeader( uint32_t pap ) /* process all the I/O Ints */ printf( "/*I/O Ints:\tType\tPolarity Trigger\tBus ID\t IRQ\tAPIC ID\tPIN#\n*/" ); - for ( t = totalSize, c = count; c; c-- ) { + for ( c = count; c; c-- ) { if ( readType() == 3 ) intEntry(); totalSize -= basetableEntryTypes[ 3 ].length; @@ -836,7 +836,7 @@ MPConfigTableHeader( uint32_t pap ) /* process all the Local Ints */ printf( "/*Local Ints:\tType\tPolarity Trigger\tBus ID\t IRQ\tAPIC ID\tPIN#*/\n" ); - for ( t = totalSize, c = count; c; c-- ) { + for ( c = count; c; c-- ) { if ( readType() == 4 ) lintEntry(); totalSize -= basetableEntryTypes[ 4 ].length; -- cgit v1.2.3