PCI probing typo?

From: davej
Date: Fri Jan 23 2004 - 02:10:49 EST


Looking at this code, I can't convince myself it's
currently doing the right thing. It looks more like
the intention was one of the two below..

Dave

diff -urpN --exclude-from=/home/davej/.exclude bk-linus/arch/i386/pci/direct.c linux-2.5/arch/i386/pci/direct.c
--- bk-linus/arch/i386/pci/direct.c 2003-09-29 19:45:06.000000000 +0100
+++ linux-2.5/arch/i386/pci/direct.c 2004-01-05 05:54:04.000000000 +0000
@@ -259,7 +259,7 @@ static int __init pci_direct_init(void)
release_resource(region);

type2:
- if ((!pci_probe & PCI_PROBE_CONF2) == 0)
+ if ((pci_probe & PCI_PROBE_CONF2) == 0)
goto out;
region = request_region(0xCF8, 4, "PCI conf2");
if (!region)

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/