From: Paolo Ornati <ornati@fastwebnet.it>
To: Andi Kleen <ak@suse.de>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: [PATCH] fix a typo in for loop
Date: Tue, 11 Apr 2006 15:54:46 +0200 [thread overview]
Message-ID: <20060411155446.0ef2f89c@localhost> (raw)
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
next reply other threads:[~2006-04-11 13:54 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-04-11 13:54 Paolo Ornati [this message]
2006-04-11 16:29 ` [PATCH] fix a typo in for loop Andi Kleen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20060411155446.0ef2f89c@localhost \
--to=ornati@fastwebnet.it \
--cc=ak@suse.de \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.