From: trem <tremyfr@yahoo.fr>
To: kernel-janitors@vger.kernel.org
Subject: [KJ] [PATCH] drivers/char/rocket.c : replace pci_find_device by
Date: Sat, 27 May 2006 21:24:52 +0000 [thread overview]
Message-ID: <4478C3A4.9000504@yahoo.fr> (raw)
[-- Attachment #1: Type: text/plain, Size: 310 bytes --]
From: trem <tremyfr@yahoo.fr>
This patch simply change pci_find_device by pci_get_device, because
pci_find_device is deprecated. No pci_dev_put is needed because the
loop isn't broken, and pci_get_device decrement the counter of the
device given as from parameter.
Signed-Off-By: trem <tremyfr@yahoo.fr>
---
[-- Attachment #2: rocket_replace_pci_find_device_by_pci_get_device.patch --]
[-- Type: text/x-patch, Size: 493 bytes --]
diff --git a/drivers/char/rocket.c b/drivers/char/rocket.c
index 7edc6a4..2682c8c 100644
--- a/drivers/char/rocket.c
+++ b/drivers/char/rocket.c
@@ -2230,7 +2230,7 @@ static int __init init_PCI(int boards_fo
int count = 0;
/* Work through the PCI device list, pulling out ours */
- while ((dev = pci_find_device(PCI_VENDOR_ID_RP, PCI_ANY_ID, dev))) {
+ while ((dev = pci_get_device(PCI_VENDOR_ID_RP, PCI_ANY_ID, dev))) {
if (register_PCI(count + boards_found, dev))
count++;
}
[-- Attachment #3: Type: text/plain, Size: 168 bytes --]
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
https://lists.osdl.org/mailman/listinfo/kernel-janitors
next reply other threads:[~2006-05-27 21:24 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-05-27 21:24 trem [this message]
2006-05-29 21:30 ` [KJ] [PATCH] drivers/char/rocket.c : replace pci_find_device by 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=4478C3A4.9000504@yahoo.fr \
--to=tremyfr@yahoo.fr \
--cc=kernel-janitors@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.