public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fix a typo in for loop
@ 2006-04-11 13:54 Paolo Ornati
  2006-04-11 16:29 ` Andi Kleen
  0 siblings, 1 reply; 2+ messages in thread
From: Paolo Ornati @ 2006-04-11 13:54 UTC (permalink / raw)
  To: Andi Kleen; +Cc: Linux Kernel Mailing List

Fix a typo in a for loop, "i" should be "k".

Signed-off-by: Paolo Ornati <ornati@fastwebnet.it>

---

diff --git a/arch/x86_64/pci/mmconfig.c b/arch/x86_64/pci/mmconfig.c
index b493ed9..a1f88f0 100644
--- a/arch/x86_64/pci/mmconfig.c
+++ b/arch/x86_64/pci/mmconfig.c
@@ -142,7 +142,7 @@ static __init void unreachable_devices(v
 {
 	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;


-- 
	Paolo Ornati
	Linux 2.6.16.2 on x86_64

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] fix a typo in for loop
  2006-04-11 13:54 [PATCH] fix a typo in for loop Paolo Ornati
@ 2006-04-11 16:29 ` Andi Kleen
  0 siblings, 0 replies; 2+ messages in thread
From: Andi Kleen @ 2006-04-11 16:29 UTC (permalink / raw)
  To: Paolo Ornati; +Cc: Linux Kernel Mailing List

On Tuesday 11 April 2006 15:54, Paolo Ornati wrote:
> Fix a typo in a for loop, "i" should be "k".

Fix is already submitted, but thanks.
-Andi


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-04-11 16:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-11 13:54 [PATCH] fix a typo in for loop Paolo Ornati
2006-04-11 16:29 ` Andi Kleen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox