diff options
author | Sven Schnelle <svens@stackframe.org> | 2012-06-20 09:14:08 +0200 |
---|---|---|
committer | Sven Schnelle <svens@stackframe.org> | 2012-06-20 09:44:18 +0200 |
commit | 57f524fd62ab9b76dd4850e907dcbd338eb7706f (patch) | |
tree | 28981f3cecfb9fbf824d0e665aca31f7f77ec4a8 /util | |
parent | 9b860165bac4153517f46d655e5f67a25326214b (diff) |
mptable: remove unused variable
Change-Id: I1ff7e040b5aafcdb05a3669158ae94551981e747
Signed-off-by: Sven Schnelle <svens@stackframe.org>
Reviewed-on: http://review.coreboot.org/1109
Tested-by: build bot (Jenkins)
Diffstat (limited to 'util')
-rw-r--r-- | util/mptable/mptable.c | 12 |
1 files changed, 6 insertions, 6 deletions
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; |