* [PATCH] gt96100: move to pci_get_device API
@ 2006-09-15 14:27 Alan Cox
2006-09-16 12:48 ` Jiri Slaby
0 siblings, 1 reply; 3+ messages in thread
From: Alan Cox @ 2006-09-15 14:27 UTC (permalink / raw)
To: jgarzik, linux-kernel, source
Signed-off-by: Alan Cox <alan@redhat.com>
diff -u --new-file --recursive --exclude-from /usr/src/exclude linux.vanilla-2.6.18-rc6-mm1/drivers/net/gt96100eth.c linux-2.6.18-rc6-mm1/drivers/net/gt96100eth.c
--- linux.vanilla-2.6.18-rc6-mm1/drivers/net/gt96100eth.c 2006-09-11 11:02:17.000000000 +0100
+++ linux-2.6.18-rc6-mm1/drivers/net/gt96100eth.c 2006-09-14 16:45:30.000000000 +0100
@@ -613,9 +613,9 @@
/*
* Stupid probe because this really isn't a PCI device
*/
- if (!(pci = pci_find_device(PCI_VENDOR_ID_MARVELL,
+ if (!(pci = pci_get_device(PCI_VENDOR_ID_MARVELL,
PCI_DEVICE_ID_MARVELL_GT96100, NULL)) &&
- !(pci = pci_find_device(PCI_VENDOR_ID_MARVELL,
+ !(pci = pci_get_device(PCI_VENDOR_ID_MARVELL,
PCI_DEVICE_ID_MARVELL_GT96100A, NULL))) {
printk(KERN_ERR __FILE__ ": GT96100 not found!\n");
return -ENODEV;
@@ -630,6 +630,8 @@
for (i=0; i < NUM_INTERFACES; i++)
retval |= gt96100_probe1(pci, i);
+
+ pci_dev_put(pci);
return retval;
}
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] gt96100: move to pci_get_device API
2006-09-15 14:27 [PATCH] gt96100: move to pci_get_device API Alan Cox
@ 2006-09-16 12:48 ` Jiri Slaby
2006-09-16 17:01 ` Alan Cox
0 siblings, 1 reply; 3+ messages in thread
From: Jiri Slaby @ 2006-09-16 12:48 UTC (permalink / raw)
To: Alan Cox; +Cc: jgarzik, linux-kernel, source
Alan Cox wrote:
> Signed-off-by: Alan Cox <alan@redhat.com>
>
> diff -u --new-file --recursive --exclude-from /usr/src/exclude linux.vanilla-2.6.18-rc6-mm1/drivers/net/gt96100eth.c linux-2.6.18-rc6-mm1/drivers/net/gt96100eth.c
> --- linux.vanilla-2.6.18-rc6-mm1/drivers/net/gt96100eth.c 2006-09-11 11:02:17.000000000 +0100
> +++ linux-2.6.18-rc6-mm1/drivers/net/gt96100eth.c 2006-09-14 16:45:30.000000000 +0100
> @@ -613,9 +613,9 @@
> /*
> * Stupid probe because this really isn't a PCI device
> */
> - if (!(pci = pci_find_device(PCI_VENDOR_ID_MARVELL,
> + if (!(pci = pci_get_device(PCI_VENDOR_ID_MARVELL,
> PCI_DEVICE_ID_MARVELL_GT96100, NULL)) &&
> - !(pci = pci_find_device(PCI_VENDOR_ID_MARVELL,
> + !(pci = pci_get_device(PCI_VENDOR_ID_MARVELL,
> PCI_DEVICE_ID_MARVELL_GT96100A, NULL))) {
They wanted pci_device_table with for_each_pci_dev+pci_match_id here...
> printk(KERN_ERR __FILE__ ": GT96100 not found!\n");
> return -ENODEV;
> @@ -630,6 +630,8 @@
>
> for (i=0; i < NUM_INTERFACES; i++)
> retval |= gt96100_probe1(pci, i);
> +
> + pci_dev_put(pci);
>
> return retval;
> }
BTW. I posted something similar a while ago, but it wasn't applied (however, I
had problems with mail-posting)
See this:
http://lkml.org/lkml/2006/5/25/304
http://lkml.org/lkml/2006/6/5/268
regards,
--
http://www.fi.muni.cz/~xslaby/ Jiri Slaby
faculty of informatics, masaryk university, brno, cz
e-mail: jirislaby gmail com, gpg pubkey fingerprint:
B674 9967 0407 CE62 ACC8 22A0 32CC 55C3 39D4 7A7E
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] gt96100: move to pci_get_device API
2006-09-16 12:48 ` Jiri Slaby
@ 2006-09-16 17:01 ` Alan Cox
0 siblings, 0 replies; 3+ messages in thread
From: Alan Cox @ 2006-09-16 17:01 UTC (permalink / raw)
To: Jiri Slaby; +Cc: jgarzik, linux-kernel, source
Ar Sad, 2006-09-16 am 14:47 +0159, ysgrifennodd Jiri Slaby:
> They wanted pci_device_table with for_each_pci_dev+pci_match_id here...
Thats a seperate problem space for this and a lot of other drivers. We
need to get rid of pci_find_* more urgently than we need to make drivers
support hotplug of their own hardware.
The former causes oopses walking the PCI bus tree the latter is just a
limitation of drivers
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2006-09-16 16:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-15 14:27 [PATCH] gt96100: move to pci_get_device API Alan Cox
2006-09-16 12:48 ` Jiri Slaby
2006-09-16 17:01 ` Alan Cox
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.