diff options
author | peter <peter@FreeBSD.org> | 2001-01-17 00:47:46 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-01-17 00:47:46 +0000 |
commit | 136bb589b55a34b9c00424c70b0776e4322018f7 (patch) | |
tree | d884ac45aba8c81796d3ca6278cc751dcca06d32 /sys/dev/ar | |
parent | 9cc5c3f0428021956a4a8d5b95d31e2c4d18911d (diff) | |
download | FreeBSD-src-136bb589b55a34b9c00424c70b0776e4322018f7.zip FreeBSD-src-136bb589b55a34b9c00424c70b0776e4322018f7.tar.gz |
Special case for compiling LINT - just give a warning and continue on.
At least we have a chance at getting test compile coverage for the rest
of the kernel now.
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 |