aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86_64/pci
diff options
context:
space:
mode:
authorAndi Kleen <ak@suse.de>2006-04-11 06:54:51 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-04-11 09:38:57 -0400
commit44b940c299dfaaf25b7aad683ff55cb213502ddd (patch)
tree1b7397f5a661d467414dfee4709be40c29306afe /arch/x86_64/pci
parentecc16ba96fd5b1a1c1988f0a2b05ff954bdff728 (diff)
[PATCH] x86_64: Fix embarassing typo in mmconfig bus check
Surprising that it still worked at all with this - yes it was tested. Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64/pci')
-rw-r--r--arch/x86_64/pci/mmconfig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/pci/mmconfig.c b/arch/x86_64/pci/mmconfig.c
index 1a59a31bb740..a2060e4d5de6 100644
--- a/arch/x86_64/pci/mmconfig.c
+++ b/arch/x86_64/pci/mmconfig.c
@@ -142,7 +142,7 @@ static __init void unreachable_devices(void)
142{ 142{
143 int i, k; 143 int i, k;
144 /* Use the max bus number from ACPI here? */ 144 /* Use the max bus number from ACPI here? */
145 for (k = 0; i < MAX_CHECK_BUS; k++) { 145 for (k = 0; k < MAX_CHECK_BUS; k++) {
146 for (i = 0; i < 32; i++) { 146 for (i = 0; i < 32; i++) {
147 u32 val1; 147 u32 val1;
148 char __iomem *addr; 148 char __iomem *addr;