diff options
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/amd/amd.c | 4 | ||||
| -rw-r--r-- | sys/dev/ar/if_ar_pci.c | 4 | ||||
| -rw-r--r-- | sys/dev/cy/cy_pci.c | 4 | ||||
| -rw-r--r-- | sys/dev/en/if_en_pci.c | 4 | ||||
| -rw-r--r-- | sys/dev/lnc/if_lnc_pci.c | 4 | ||||
| -rw-r--r-- | sys/dev/sr/if_sr_pci.c | 4 |
6 files changed, 24 insertions, 0 deletions
diff --git a/sys/dev/amd/amd.c b/sys/dev/amd/amd.c index decdfc3c82e0..3d172f3d695b 100644 --- a/sys/dev/amd/amd.c +++ b/sys/dev/amd/amd.c @@ -50,6 +50,10 @@ /* #define AMD_DEBUG0 */ /* #define AMD_DEBUG_SCSI_PHASE */ +#ifndef COMPAT_OLDPCI +#error "The amd device requires the old pci compatibility shims" +#endif + #include <sys/param.h> #include <sys/systm.h> diff --git a/sys/dev/ar/if_ar_pci.c b/sys/dev/ar/if_ar_pci.c index 800e63db2acb..9643412511cb 100644 --- a/sys/dev/ar/if_ar_pci.c +++ b/sys/dev/ar/if_ar_pci.c @@ -29,6 +29,10 @@ * $FreeBSD$ */ +#ifndef COMPAT_OLDPCI +#error "The ar device requires the old pci compatibility shims" +#endif + #include "ar.h" #include <sys/param.h> diff --git a/sys/dev/cy/cy_pci.c b/sys/dev/cy/cy_pci.c index 71e16953af7a..e52e554bc8b2 100644 --- a/sys/dev/cy/cy_pci.c +++ b/sys/dev/cy/cy_pci.c @@ -33,6 +33,10 @@ #include "opt_cy_pci_fastintr.h" +#ifndef COMPAT_OLDPCI +#error "The cy device requires the old pci compatibility shims" +#endif + #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> diff --git a/sys/dev/en/if_en_pci.c b/sys/dev/en/if_en_pci.c index a72a292e874a..5212499ce213 100644 --- a/sys/dev/en/if_en_pci.c +++ b/sys/dev/en/if_en_pci.c @@ -45,6 +45,10 @@ * thanks to Matt Thomas for figuring out FreeBSD vs NetBSD vs etc.. diffs. */ +#ifndef COMPAT_OLDPCI +#error "The en device requires the old pci compatibility shims" +#endif + #include "en.h" #include <sys/param.h> diff --git a/sys/dev/lnc/if_lnc_pci.c b/sys/dev/lnc/if_lnc_pci.c index 33c7212295ee..19a2a07cc333 100644 --- a/sys/dev/lnc/if_lnc_pci.c +++ b/sys/dev/lnc/if_lnc_pci.c @@ -20,6 +20,10 @@ * $FreeBSD$ */ +#ifndef COMPAT_OLDPCI +#error "The lnc device requires the old pci compatibility shims" +#endif + #include <sys/param.h> #include <sys/systm.h> #include <sys/malloc.h> diff --git a/sys/dev/sr/if_sr_pci.c b/sys/dev/sr/if_sr_pci.c index 04d0db82c418..50ddb7fcb799 100644 --- a/sys/dev/sr/if_sr_pci.c +++ b/sys/dev/sr/if_sr_pci.c @@ -30,6 +30,10 @@ * $FreeBSD$ */ +#ifndef COMPAT_OLDPCI +#error "The sr device requires the old pci compatibility shims" +#endif + #include "sr.h" #include <sys/param.h> |
