Skip to content

Commit

Permalink
[PATCH] x86_64: Fix embarassing typo in mmconfig bus check
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Andi Kleen authored and Linus Torvalds committed Apr 11, 2006
1 parent ecc16ba commit 44b940c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86_64/pci/mmconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ static __init void unreachable_devices(void)
{
int i, k;
/* Use the max bus number from ACPI here? */
for (k = 0; i < MAX_CHECK_BUS; k++) {
for (k = 0; k < MAX_CHECK_BUS; k++) {
for (i = 0; i < 32; i++) {
u32 val1;
char __iomem *addr;
Expand Down

0 comments on commit 44b940c

Please sign in to comment.