diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-09-19 06:10:10 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-09-19 06:10:10 +0000 |
commit | 013b8fbb3fd0584953c0d8daeac0ae7ea14e7c8f (patch) | |
tree | 27630a48416425c495a919cb0c433c6f8f5f2815 /sys/arch/powerpc/pci | |
parent | 02db905a657286506ceb7db90df9f0ca612d69da (diff) |
Remove annoying debugging print that was introduced with the cmap setting code.
Diffstat (limited to 'sys/arch/powerpc/pci')
-rw-r--r-- | sys/arch/powerpc/pci/vgafb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/powerpc/pci/vgafb.c b/sys/arch/powerpc/pci/vgafb.c index 91d7e9cfc9d..264b1a8db04 100644 --- a/sys/arch/powerpc/pci/vgafb.c +++ b/sys/arch/powerpc/pci/vgafb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vgafb.c,v 1.4 2000/09/19 05:56:51 rahnds Exp $ */ +/* $OpenBSD: vgafb.c,v 1.5 2000/09/19 06:10:09 rahnds Exp $ */ /* $NetBSD: vga.c,v 1.3 1996/12/02 22:24:54 cgd Exp $ */ /* @@ -554,7 +554,6 @@ vgafb_putcmap(vc, cm) g = &(vc->vc_cmap_green[index]); b = &(vc->vc_cmap_blue[index]); - printf("ofh = %x\n", vc->vc_ofh); for (i = 0; i < count; i++) { OF_call_method_1("color!", vc->vc_ofh, 4, *r, *g, *b, index); r++, g++, b++, index++; |