diff --git a/sys/dev/fe/if_fe.c b/sys/dev/fe/if_fe.c index 61ca476c90f..5dce7788180 100644 --- a/sys/dev/fe/if_fe.c +++ b/sys/dev/fe/if_fe.c @@ -769,7 +769,7 @@ fe_probe_fmv ( DEVICE * dev, struct fe_softc * sc ) return 0; #else /* Just log the fact and see what happens... FIXME. */ - log( LOG_WARNING, "fe%d: strange I/O config?n", sc->sc_unit ); + log( LOG_WARNING, "fe%d: strange I/O config?\n", sc->sc_unit ); #endif } @@ -857,7 +857,7 @@ fe_probe_fmv ( DEVICE * dev, struct fe_softc * sc ) } else if ( dev->id_irq != irqmap[ n ] ) { /* Don't match. */ log( LOG_WARNING, - "fe%d: check IRQ in config; it may be incorrect", + "fe%d: check IRQ in config; it may be incorrect\n", sc->sc_unit ); } @@ -2112,7 +2112,7 @@ fe_emptybuffer ( struct fe_softc * sc ) u_char saved_dlcr5; #if FE_DEBUG >= 2 - log( LOG_WARNING, "fe%d: emptying receive buffer", sc->sc_unit ); + log( LOG_WARNING, "fe%d: emptying receive buffer\n", sc->sc_unit ); #endif /* * Stop receiving packets, temporarily. diff --git a/sys/i386/isa/if_fe.c b/sys/i386/isa/if_fe.c index 61ca476c90f..5dce7788180 100644 --- a/sys/i386/isa/if_fe.c +++ b/sys/i386/isa/if_fe.c @@ -769,7 +769,7 @@ fe_probe_fmv ( DEVICE * dev, struct fe_softc * sc ) return 0; #else /* Just log the fact and see what happens... FIXME. */ - log( LOG_WARNING, "fe%d: strange I/O config?n", sc->sc_unit ); + log( LOG_WARNING, "fe%d: strange I/O config?\n", sc->sc_unit ); #endif } @@ -857,7 +857,7 @@ fe_probe_fmv ( DEVICE * dev, struct fe_softc * sc ) } else if ( dev->id_irq != irqmap[ n ] ) { /* Don't match. */ log( LOG_WARNING, - "fe%d: check IRQ in config; it may be incorrect", + "fe%d: check IRQ in config; it may be incorrect\n", sc->sc_unit ); } @@ -2112,7 +2112,7 @@ fe_emptybuffer ( struct fe_softc * sc ) u_char saved_dlcr5; #if FE_DEBUG >= 2 - log( LOG_WARNING, "fe%d: emptying receive buffer", sc->sc_unit ); + log( LOG_WARNING, "fe%d: emptying receive buffer\n", sc->sc_unit ); #endif /* * Stop receiving packets, temporarily.