Module Name: src Committed By: jmcneill Date: Tue Feb 15 08:56:11 UTC 2011
Modified Files: src/sys/dev/pci: agp_via.c Log Message: print AGP mode (v3/v2compat/v2) with aprint_debug instead of aprint_normal To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/sys/dev/pci/agp_via.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/pci/agp_via.c diff -u src/sys/dev/pci/agp_via.c:1.19 src/sys/dev/pci/agp_via.c:1.20 --- src/sys/dev/pci/agp_via.c:1.19 Sat Nov 13 13:52:05 2010 +++ src/sys/dev/pci/agp_via.c Tue Feb 15 08:56:11 2011 @@ -1,4 +1,4 @@ -/* $NetBSD: agp_via.c,v 1.19 2010/11/13 13:52:05 uebayasi Exp $ */ +/* $NetBSD: agp_via.c,v 1.20 2011/02/15 08:56:11 jmcneill Exp $ */ /*- * Copyright (c) 2000 Doug Rabson @@ -29,7 +29,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: agp_via.c,v 1.19 2010/11/13 13:52:05 uebayasi Exp $"); +__KERNEL_RCSID(0, "$NetBSD: agp_via.c,v 1.20 2011/02/15 08:56:11 jmcneill Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -105,14 +105,14 @@ agpsel = pci_conf_read(pa->pa_pc, pa->pa_tag, AGP_VIA_AGPSEL); if ((agpsel & (1 << 9)) == 0) { asc->regs = via_v3_regs; - aprint_normal(" (v3)"); + aprint_debug(" (v3)"); } else { asc->regs = via_v2_regs; - aprint_normal(" (v2 compat mode)"); + aprint_debug(" (v2 compat mode)"); } } else { asc->regs = via_v2_regs; - aprint_normal(" (v2)"); + aprint_debug(" (v2)"); } if (agp_map_aperture(pa, sc, AGP_APBASE) != 0) {