Use aprint_normal() for cfprint() routines.

This commit is contained in:
thorpej 2003-01-01 00:35:30 +00:00
parent a7f53c4d06
commit 41a403fb33
4 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: bonito_mainbus.c,v 1.5 2002/10/02 03:36:20 thorpej Exp $ */
/* $NetBSD: bonito_mainbus.c,v 1.6 2003/01/01 00:35:30 thorpej Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@ -126,8 +126,8 @@ bonito_mainbus_print(void *aux, const char *pnp)
/* only PCIs can attach to BONITOs; easy. */
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);
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: mainbus.c,v 1.12 2002/10/02 03:36:20 thorpej Exp $ */
/* $NetBSD: mainbus.c,v 1.13 2003/01/01 00:35:30 thorpej Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@ -242,9 +242,9 @@ mainbus_print(void *aux, const char *pnp)
struct mainbus_attach_args *ma = aux;
if (pnp)
printf("%s at %s", ma->ma_name, pnp);
aprint_normal("%s at %s", ma->ma_name, pnp);
if (ma->ma_addr != (bus_addr_t) -1)
printf(" %s 0x%lx", mainbuscf_locnames[MAINBUSCF_ADDR],
aprint_normal(" %s 0x%lx", mainbuscf_locnames[MAINBUSCF_ADDR],
ma->ma_addr);
return (UNCONF);

View File

@ -1,4 +1,4 @@
/* $NetBSD: vtpbc_mainbus.c,v 1.9 2002/10/02 03:36:20 thorpej Exp $ */
/* $NetBSD: vtpbc_mainbus.c,v 1.10 2003/01/01 00:35:30 thorpej Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@ -144,8 +144,8 @@ vtpbc_mainbus_print(void *aux, const char *pnp)
/* only PCIs can attach to VTPBCs; easy. */
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);
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: pcib.c,v 1.12 2002/10/02 03:36:21 thorpej Exp $ */
/* $NetBSD: pcib.c,v 1.13 2003/01/01 00:35:31 thorpej Exp $ */
/*-
* Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
@ -38,7 +38,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: pcib.c,v 1.12 2002/10/02 03:36:21 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: pcib.c,v 1.13 2003/01/01 00:35:31 thorpej Exp $");
#include "opt_algor_p5064.h"
#include "opt_algor_p6032.h"
@ -336,7 +336,7 @@ pcib_print(void *aux, const char *pnp)
struct isabus_attach_args *iba;
if (pnp)
printf("%s at %s", iba->iba_busname, pnp);
aprint_normal("%s at %s", iba->iba_busname, pnp);
return (UNCONF);
}