Remove an aprint_normal() so that the output looks reasonable

at least in the non-error case.
(The aprint_* stuff makes it hard to keep track of newlines and
device name tags, and it suffers from lack of rules.)
This commit is contained in:
drochner 2003-03-24 09:12:55 +00:00
parent 6d65835e70
commit 4b3ca2b813
1 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: agp_i810.c,v 1.15 2003/01/31 00:07:39 thorpej Exp $ */
/* $NetBSD: agp_i810.c,v 1.16 2003/03/24 09:12:55 drochner Exp $ */
/*-
* Copyright (c) 2000 Doug Rabson
@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.15 2003/01/31 00:07:39 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.16 2003/03/24 09:12:55 drochner Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -250,8 +250,6 @@ agp_i810_attach(struct device *parent, struct device *self, void *aux)
*/
agp_flush_cache();
aprint_normal("%s", sc->as_dev.dv_xname);
return 0;
}