diff options
-rw-r--r-- | sys/pci/simos.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/pci/simos.c b/sys/pci/simos.c index 7944d5e..040e042 100644 --- a/sys/pci/simos.c +++ b/sys/pci/simos.c @@ -26,6 +26,10 @@ * $FreeBSD$ */ +#ifdef COMPILING_LINT +#warning "The simos driver is broken and is not compiled with LINT" +#else + #include <sys/param.h> #include <sys/systm.h> #include <sys/malloc.h> @@ -348,3 +352,6 @@ simos_intr(int unit) simos_done(sc); } + + +#endif /* !COMPILING_LINT */ |