diff options
author | imp <imp@FreeBSD.org> | 2000-03-27 20:24:02 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2000-03-27 20:24:02 +0000 |
commit | 08732049490f877a5a9ce7aca95b16362371d29a (patch) | |
tree | e805f7d91f322505bd74be263d11fcfc800fc557 /sys/dev/ar | |
parent | c0e09df016e1c742635bf5439eda43e93cf6f171 (diff) | |
download | FreeBSD-src-08732049490f877a5a9ce7aca95b16362371d29a.zip FreeBSD-src-08732049490f877a5a9ce7aca95b16362371d29a.tar.gz |
Ahhrggg. Put the test for the compat shims AFTER the file that includes
them.
Pointed out by: bde
Diffstat (limited to 'sys/dev/ar')
-rw-r--r-- | sys/dev/ar/if_ar_pci.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ar/if_ar_pci.c b/sys/dev/ar/if_ar_pci.c index 9643412..6fa1d52 100644 --- a/sys/dev/ar/if_ar_pci.c +++ b/sys/dev/ar/if_ar_pci.c @@ -29,10 +29,6 @@ * $FreeBSD$ */ -#ifndef COMPAT_OLDPCI -#error "The ar device requires the old pci compatibility shims" -#endif - #include "ar.h" #include <sys/param.h> @@ -42,6 +38,10 @@ #include <pci/pcivar.h> +#ifndef COMPAT_OLDPCI +#error "The ar device requires the old pci compatibility shims" +#endif + /* * The must match with the real functions in if_ar.c */ |