x86: k8topology fix shadow variable
sparse mutters: arch/x86/mm/k8topology_64.c:108:7: warning: symbol 'nodeid' shadows an earlier one Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
0eafe234a2
commit
d34c08958f
1 changed files with 2 additions and 3 deletions
|
@ -76,10 +76,10 @@ int __init k8_scan_nodes(unsigned long start, unsigned long end)
|
||||||
{
|
{
|
||||||
unsigned long prevbase;
|
unsigned long prevbase;
|
||||||
struct bootnode nodes[8];
|
struct bootnode nodes[8];
|
||||||
int nodeid, i, nb;
|
int i, nb;
|
||||||
unsigned char nodeids[8];
|
unsigned char nodeids[8];
|
||||||
int found = 0;
|
int found = 0;
|
||||||
u32 reg;
|
u32 nodeid, reg;
|
||||||
unsigned numnodes;
|
unsigned numnodes;
|
||||||
unsigned cores;
|
unsigned cores;
|
||||||
unsigned bits;
|
unsigned bits;
|
||||||
|
@ -106,7 +106,6 @@ int __init k8_scan_nodes(unsigned long start, unsigned long end)
|
||||||
prevbase = 0;
|
prevbase = 0;
|
||||||
for (i = 0; i < 8; i++) {
|
for (i = 0; i < 8; i++) {
|
||||||
unsigned long base, limit;
|
unsigned long base, limit;
|
||||||
u32 nodeid;
|
|
||||||
|
|
||||||
base = read_pci_config(0, nb, 1, 0x40 + i*8);
|
base = read_pci_config(0, nb, 1, 0x40 + i*8);
|
||||||
limit = read_pci_config(0, nb, 1, 0x44 + i*8);
|
limit = read_pci_config(0, nb, 1, 0x44 + i*8);
|
||||||
|
|
Loading…
Add table
Reference in a new issue