From 031deaedf1ab6f4691be9cf20f9afc817fa10c2a Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Thu, 13 Jan 2000 22:44:24 +0000 Subject: [PATCH] Corrected order of access methods (thanks to Andreas Schockenhoff). --- lib/access.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/access.c b/lib/access.c index 4c47a0e..697f938 100644 --- a/lib/access.c +++ b/lib/access.c @@ -1,5 +1,5 @@ /* - * $Id: access.c,v 1.5 1999/07/20 14:01:28 mj Exp $ + * $Id: access.c,v 1.6 2000/01/13 22:44:24 mj Exp $ * * The PCI Library -- User Access * @@ -27,11 +27,6 @@ static struct pci_methods *pci_methods[PCI_ACCESS_MAX] = { #else NULL, #endif -#ifdef HAVE_PM_FBSD_DEVICE - &pm_fbsd_device, -#else - NULL, -#endif #ifdef HAVE_PM_INTEL_CONF &pm_intel_conf1, &pm_intel_conf2, @@ -39,6 +34,11 @@ static struct pci_methods *pci_methods[PCI_ACCESS_MAX] = { NULL, NULL, #endif +#ifdef HAVE_PM_FBSD_DEVICE + &pm_fbsd_device, +#else + NULL, +#endif #ifdef HAVE_PM_DUMP &pm_dump, #else -- 2.39.2