Use aprint_normal for cfprint routines.

This commit is contained in:
thorpej 2003-01-01 00:32:04 +00:00
parent 5001cdaf1f
commit aec1389b37
4 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: isabus.c,v 1.16 2002/03/04 02:19:07 simonb Exp $ */
/* $NetBSD: isabus.c,v 1.17 2003/01/01 00:32:04 thorpej Exp $ */
/* $OpenBSD: isabus.c,v 1.15 1998/03/16 09:38:46 pefo Exp $ */
/* NetBSD: isa.c,v 1.33 1995/06/28 04:30:51 cgd Exp */
@ -173,8 +173,8 @@ isabrprint(aux, pnp)
struct confargs *ca = aux;
if (pnp)
printf("%s at %s", ca->ca_name, pnp);
printf(" isa_io_base 0x%lx isa_mem_base 0x%lx",
aprint_normal("%s at %s", ca->ca_name, pnp);
aprint_verbose(" isa_io_base 0x%lx isa_mem_base 0x%lx",
arc_bus_io.bs_vbase, arc_bus_mem.bs_vbase);
return (UNCONF);
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: fd.c,v 1.9 2002/11/01 11:31:51 mrg Exp $ */
/* $NetBSD: fd.c,v 1.10 2003/01/01 00:32:05 thorpej Exp $ */
/* $OpenBSD: fd.c,v 1.6 1998/10/03 21:18:57 millert Exp $ */
/* NetBSD: fd.c,v 1.78 1995/07/04 07:23:09 mycroft Exp */
@ -246,7 +246,7 @@ fdprint(aux, fdc)
register struct fdc_attach_args *fa = aux;
if (!fdc)
printf(" drive %d", fa->fa_drive);
aprint_normal(" drive %d", fa->fa_drive);
return QUIET;
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: jazzio.c,v 1.7 2002/10/02 04:59:49 thorpej Exp $ */
/* $NetBSD: jazzio.c,v 1.8 2003/01/01 00:32:05 thorpej Exp $ */
/* $OpenBSD: picabus.c,v 1.11 1999/01/11 05:11:10 millert Exp $ */
/* NetBSD: tc.c,v 1.2 1995/03/08 00:39:05 cgd Exp */
@ -175,10 +175,10 @@ jazzioprint(aux, pnp)
struct jazzio_attach_args *ja = aux;
if (pnp)
printf("%s at %s", ja->ja_name, pnp);
printf(" addr 0x%lx", ja->ja_addr);
aprint_normal("%s at %s", ja->ja_name, pnp);
aprint_normal(" addr 0x%lx", ja->ja_addr);
if (ja->ja_intr != -1)
printf(" intr %d", ja->ja_intr);
aprint_normal(" intr %d", ja->ja_intr);
return (UNCONF);
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: necpb.c,v 1.13 2002/10/02 04:59:49 thorpej Exp $ */
/* $NetBSD: necpb.c,v 1.14 2003/01/01 00:32:05 thorpej Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@ -256,8 +256,8 @@ necpbprint(aux, pnp)
struct pcibus_attach_args *pba = aux;
if (pnp)
printf("%s at %s", pba->pba_busname, pnp);
printf(" bus %d", pba->pba_bus);
aprint_normal("%s at %s", pba->pba_busname, pnp);
aprint_normal(" bus %d", pba->pba_bus);
return (UNCONF);
}