diff options
Diffstat (limited to 'sys/dev/ar')
-rw-r--r-- | sys/dev/ar/if_ar_pci.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/dev/ar/if_ar_pci.c b/sys/dev/ar/if_ar_pci.c index 6fa1d52..45482eb 100644 --- a/sys/dev/ar/if_ar_pci.c +++ b/sys/dev/ar/if_ar_pci.c @@ -29,6 +29,10 @@ * $FreeBSD$ */ +#ifdef COMPILING_LINT +#warning "The ar pci driver is broken and is not compiled with LINT" +#else + #include "ar.h" #include <sys/param.h> @@ -119,3 +123,4 @@ ar_pci_attach(pcici_t config_id, int unit) return; } } +#endif |