Add \n in attach messages.

This commit is contained in:
augustss 2002-01-03 18:13:19 +00:00
parent 0042317848
commit d083e37f0b
4 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: aztech.c,v 1.2 2002/01/02 12:42:23 augustss Exp $ */
/* $NetBSD: aztech.c,v 1.3 2002/01/03 18:13:19 augustss Exp $ */
/* $OpenBSD: aztech.c,v 1.2 2001/12/05 10:27:06 mickey Exp $ */
/* $RuOBSD: aztech.c,v 1.11 2001/10/20 13:23:47 pva Exp $ */
@ -159,7 +159,7 @@ az_attach(struct device *parent, struct device *self, void *aux)
0, &sc->lm.ioh))
panic(": bus_space_map() of %s failed", sc->sc_dev.dv_xname);
printf(": Aztech/PackardBell");
printf(": Aztech/PackardBell\n");
/* Configure struct lm700x_t lm */
sc->lm.offset = 0;

View File

@ -1,4 +1,4 @@
/* $NetBSD: radiotrack.c,v 1.3 2002/01/02 12:42:23 augustss Exp $ */
/* $NetBSD: radiotrack.c,v 1.4 2002/01/03 18:13:19 augustss Exp $ */
/* $OpenBSD: radiotrack.c,v 1.1 2001/12/05 10:27:06 mickey Exp $ */
/* $RuOBSD: radiotrack.c,v 1.3 2001/10/18 16:51:36 pva Exp $ */
@ -177,17 +177,17 @@ rt_attach(struct device *parent, struct device *self, void *aux)
/* FALLTHROUGH */
case 0x30C:
sc->cardtype = CARD_RADIOTRACK;
printf(": AIMS Lab Radiotrack or compatible");
printf(": AIMS Lab Radiotrack or compatible\n");
break;
case 0x284:
/* FALLTHROUGH */
case 0x384:
sc->cardtype = CARD_SF16FMI;
printf(": SoundForte RadioX SF16-FMI");
printf(": SoundForte RadioX SF16-FMI\n");
break;
default:
sc->cardtype = CARD_UNKNOWN;
printf(": Unknown card");
printf(": Unknown card\n");
break;
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: radiotrack2.c,v 1.2 2002/01/02 12:42:23 augustss Exp $ */
/* $NetBSD: radiotrack2.c,v 1.3 2002/01/03 18:13:19 augustss Exp $ */
/* $OpenBSD: radiotrack2.c,v 1.1 2001/12/05 10:27:06 mickey Exp $ */
/* $RuOBSD: radiotrack2.c,v 1.2 2001/10/18 16:51:36 pva Exp $ */
@ -169,7 +169,7 @@ rtii_attach(struct device *parent, struct device *self, void *aux)
sc->tea.write_bit = rtii_write_bit;
sc->tea.read = rtii_hw_read;
printf(": AIMS Lab Radiotrack II");
printf(": AIMS Lab Radiotrack II\n");
tea5757_set_freq(&sc->tea, sc->stereo, sc->lock, sc->freq);
rtii_set_mute(sc);

View File

@ -1,4 +1,4 @@
/* $NetBSD: sf16fmr2.c,v 1.2 2002/01/02 12:42:23 augustss Exp $ */
/* $NetBSD: sf16fmr2.c,v 1.3 2002/01/03 18:13:20 augustss Exp $ */
/* $OpenBSD: sf16fmr2.c,v 1.3 2001/12/18 18:48:08 mickey Exp $ */
/* $RuOBSD: sf16fmr2.c,v 1.12 2001/10/18 16:51:36 pva Exp $ */
@ -169,7 +169,7 @@ sf2r_attach(struct device *parent, struct device *self, void *aux)
sc->tea.write_bit = sf2r_write_bit;
sc->tea.read = sf2r_read_register;
printf(": SoundForte RadioLink SF16-FMR2");
printf(": SoundForte RadioLink SF16-FMR2\n");
tea5757_set_freq(&sc->tea, sc->stereo, sc->lock, sc->freq);
sf2r_set_mute(sc);