diff options
author | wollman <wollman@FreeBSD.org> | 1993-11-25 01:38:01 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1993-11-25 01:38:01 +0000 |
commit | 8e24073a9b2dcc5fd2bcd719dd679f029d4818cb (patch) | |
tree | 5f254571daeb319e5d462e9932f7aff4e6b7ee40 /sys/i386/isa/icu.s | |
parent | 5465ba6a252350e2c96e04cb61af6d77a3d8d66e (diff) | |
download | FreeBSD-src-8e24073a9b2dcc5fd2bcd719dd679f029d4818cb.zip FreeBSD-src-8e24073a9b2dcc5fd2bcd719dd679f029d4818cb.tar.gz |
Make the LINT kernel compile with -W -Wreturn-type -Wcomment -Werror, and
add same (sans -Werror) to Makefile for future compilations.
Diffstat (limited to 'sys/i386/isa/icu.s')
-rw-r--r-- | sys/i386/isa/icu.s | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/i386/isa/icu.s b/sys/i386/isa/icu.s index d424b1b..1a71ead 100644 --- a/sys/i386/isa/icu.s +++ b/sys/i386/isa/icu.s @@ -36,7 +36,7 @@ * * @(#)icu.s 7.2 (Berkeley) 5/21/91 * - * $Id: icu.s,v 1.3 1993/09/06 16:12:03 rgrimes Exp $ + * $Id: icu.s,v 1.4 1993/11/13 02:25:21 davidg Exp $ */ /* @@ -191,7 +191,9 @@ none_to_unpend: testl $~((1 << NETISR_SCLK) | (1 << NETISR_AST)),%eax je test_ASTs # no net stuff, just temporary AST's FASTSPL_VARMASK(_netmask) +#if 0 DONET(NETISR_RAW, _rawintr, 5) +#endif #ifdef INET DONET(NETISR_IP, _ipintr, 6) @@ -280,7 +282,9 @@ in_spl0: /* * XXX - what about other net intrs? */ +#if 0 DONET(NETISR_RAW, _rawintr, 21) +#endif #ifdef INET DONET(NETISR_IP, _ipintr, 22) |