From: maximilian attems <janitor@sternwelten.at>
To: linux-kernel@vger.kernel.org
Cc: greg@kroah.com
Subject: [patch-kj] use list_for_each() i386/pci/pcbios.c
Date: Fri, 23 Jul 2004 11:19:16 +0200 [thread overview]
Message-ID: <20040723091916.GC14000@stro.at> (raw)
Use list_for_each() where applicable
- for (list = ymf_devs.next; list != &ymf_devs; list = list->next) {
+ list_for_each(list, &ymf_devs) {
pure cosmetic change, defined as a preprocessor macro in:
include/linux/list.h
patch against 2.6.7-bk20, please tell if you need against newer.
From: Domen Puncer <domen@coderock.org>
Signed-off-by: Maximilian Attems <janitor@sternwelten.at>
---
linux-2.6.7-bk20-max/arch/i386/pci/pcbios.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
diff -puN arch/i386/pci/pcbios.c~list_for_each-i386pci-pcbios arch/i386/pci/pcbios.c
--- linux-2.6.7-bk20/arch/i386/pci/pcbios.c~list_for_each-i386pci-pcbios 2004-07-11 14:41:13.000000000 +0200
+++ linux-2.6.7-bk20-max/arch/i386/pci/pcbios.c 2004-07-11 14:41:13.000000000 +0200
@@ -365,7 +365,7 @@ void __devinit pcibios_sort(void)
idx = found = 0;
while (pci_bios_find_device(dev->vendor, dev->device, idx, &bus, &devfn) == PCIBIOS_SUCCESSFUL) {
idx++;
- for (ln=pci_devices.next; ln != &pci_devices; ln=ln->next) {
+ list_for_each(ln, &pci_devices) {
d = pci_dev_g(ln);
if (d->bus->number == bus && d->devfn == devfn) {
list_del(&d->global_list);
next reply other threads:[~2004-07-23 9:19 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-07-23 9:19 maximilian attems [this message]
2004-08-02 22:43 ` [patch-kj] use list_for_each() i386/pci/pcbios.c Greg KH
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=20040723091916.GC14000@stro.at \
--to=janitor@sternwelten.at \
--cc=greg@kroah.com \
--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.