* Re: [PATCH] hp100.c: add missing pci_enable_device()
[not found] <200408242225.i7OMP5ak029691@hera.kernel.org>
@ 2004-08-25 0:41 ` Jeff Garzik
2004-08-25 15:23 ` Bjorn Helgaas
0 siblings, 1 reply; 2+ messages in thread
From: Jeff Garzik @ 2004-08-25 0:41 UTC (permalink / raw)
To: bjorn.helgaas; +Cc: Linux Kernel Mailing List, Andrew Morton
Linux Kernel Mailing List wrote:
> diff -Nru a/drivers/net/hp100.c b/drivers/net/hp100.c
> --- a/drivers/net/hp100.c 2004-08-24 15:25:16 -07:00
> +++ b/drivers/net/hp100.c 2004-08-24 15:25:16 -07:00
> @@ -2910,10 +2910,15 @@
> int ioaddr = pci_resource_start(pdev, 0);
> u_short pci_command;
> int err;
> -
> +
> if (!dev)
> return -ENOMEM;
>
> + if (pci_enable_device(pdev)) {
_Obviously_ incomplete change. Look above, and see pci_resource_start()
Jeff
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] hp100.c: add missing pci_enable_device()
2004-08-25 0:41 ` [PATCH] hp100.c: add missing pci_enable_device() Jeff Garzik
@ 2004-08-25 15:23 ` Bjorn Helgaas
0 siblings, 0 replies; 2+ messages in thread
From: Bjorn Helgaas @ 2004-08-25 15:23 UTC (permalink / raw)
To: Jeff Garzik; +Cc: Linux Kernel Mailing List, Andrew Morton, perex
On Tuesday 24 August 2004 6:41 pm, Jeff Garzik wrote:
> Linux Kernel Mailing List wrote:
> > diff -Nru a/drivers/net/hp100.c b/drivers/net/hp100.c
> > --- a/drivers/net/hp100.c 2004-08-24 15:25:16 -07:00
> > +++ b/drivers/net/hp100.c 2004-08-24 15:25:16 -07:00
> > @@ -2910,10 +2910,15 @@
> > int ioaddr = pci_resource_start(pdev, 0);
> > u_short pci_command;
> > int err;
> > -
> > +
> > if (!dev)
> > return -ENOMEM;
> >
> > + if (pci_enable_device(pdev)) {
>
>
> _Obviously_ incomplete change. Look above, and see pci_resource_start()
Thanks. Here's an additional patch to address this problem (again,
compiled but not tested because I don't have the hardware):
Don't look at pci_resource_start() before pci_enable_device().
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
===== drivers/net/hp100.c 1.29 vs edited =====
--- 1.29/drivers/net/hp100.c 2004-08-24 03:08:34 -06:00
+++ edited/drivers/net/hp100.c 2004-08-25 09:12:59 -06:00
@@ -2906,16 +2906,17 @@
static int __devinit hp100_pci_probe (struct pci_dev *pdev,
const struct pci_device_id *ent)
{
- struct net_device *dev = alloc_etherdev(sizeof(struct hp100_private));
- int ioaddr = pci_resource_start(pdev, 0);
+ struct net_device *dev;
+ int ioaddr;
u_short pci_command;
int err;
- if (!dev)
- return -ENOMEM;
+ if (pci_enable_device(pdev))
+ return -ENODEV;
- if (pci_enable_device(pdev)) {
- err = -ENODEV;
+ dev = alloc_etherdev(sizeof(struct hp100_private));
+ if (!dev) {
+ err = -ENOMEM;
goto out0;
}
@@ -2939,7 +2940,7 @@
pci_write_config_word(pdev, PCI_COMMAND, pci_command);
}
-
+ ioaddr = pci_resource_start(pdev, 0);
err = hp100_probe1(dev, ioaddr, HP100_BUS_PCI, pdev);
if (err)
goto out1;
@@ -2956,8 +2957,8 @@
release_region(dev->base_addr, HP100_REGION_SIZE);
out1:
free_netdev(dev);
- pci_disable_device(pdev);
out0:
+ pci_disable_device(pdev);
return err;
}
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2004-08-25 15:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <200408242225.i7OMP5ak029691@hera.kernel.org>
2004-08-25 0:41 ` [PATCH] hp100.c: add missing pci_enable_device() Jeff Garzik
2004-08-25 15:23 ` Bjorn Helgaas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox