diff options
author | jhb <jhb@FreeBSD.org> | 2001-12-13 11:12:30 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2001-12-13 11:12:30 +0000 |
commit | 550cf2659458c5596731107ad03930476c5bb147 (patch) | |
tree | 3e9307acb00d3f79a94d1e56babb20c6000fd4c3 | |
parent | 8ed2558536b0d1e3b53d1adfe463eabc15e43123 (diff) | |
download | FreeBSD-src-550cf2659458c5596731107ad03930476c5bb147.zip FreeBSD-src-550cf2659458c5596731107ad03930476c5bb147.tar.gz |
Comment tokens after #undef <macroname> and #endif.
Reported by: gcc30
-rw-r--r-- | sys/dev/amr/amrreg.h | 2 | ||||
-rw-r--r-- | sys/dev/sym/sym_hipd.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/amr/amrreg.h b/sys/dev/amr/amrreg.h index 4835bb1..e2f786e 100644 --- a/sys/dev/amr/amrreg.h +++ b/sys/dev/amr/amrreg.h @@ -542,4 +542,4 @@ struct amr_passthrough #define AMR_SGET_INITTARG(sc) bus_space_read_1 (sc->amr_btag, sc->amr_bhandle, AMR_SMBOX_ENABLE + 3) #endif -#endif _KERNEL +#endif /* _KERNEL */ diff --git a/sys/dev/sym/sym_hipd.c b/sys/dev/sym/sym_hipd.c index 3b77109..749285a67 100644 --- a/sys/dev/sym/sym_hipd.c +++ b/sys/dev/sym/sym_hipd.c @@ -10186,10 +10186,10 @@ out: return retv; } -#undef SET_BIT 0 -#undef CLR_BIT 1 -#undef SET_CLK 2 -#undef CLR_CLK 3 +#undef SET_BIT /* 0 */ +#undef CLR_BIT /* 1 */ +#undef SET_CLK /* 2 */ +#undef CLR_CLK /* 3 */ /* * Try reading Symbios NVRAM. |