diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-04-01 15:38:22 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-04-01 15:38:22 +0000 |
commit | e8ff48e2f1c96abca34ae64156b67061db876036 (patch) | |
tree | a0039d883b76c400f792f7dbf72c3df5979a6d5b | |
parent | 22d8b2faeb462b57124331ca0f6daa8387ec902f (diff) |
boot noise removal.
-rw-r--r-- | sys/arch/powerpc/mac/if_gm.c | 4 | ||||
-rw-r--r-- | sys/arch/powerpc/pci/mpcpcibus.c | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/sys/arch/powerpc/mac/if_gm.c b/sys/arch/powerpc/mac/if_gm.c index 50e0ee5627a..5324dcd3d7e 100644 --- a/sys/arch/powerpc/mac/if_gm.c +++ b/sys/arch/powerpc/mac/if_gm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_gm.c,v 1.2 2000/03/31 05:30:52 rahnds Exp $ */ +/* $OpenBSD: if_gm.c,v 1.3 2000/04/01 15:38:21 rahnds Exp $ */ /* $NetBSD: if_gm.c,v 1.2 2000/03/04 11:17:00 tsubai Exp $ */ /*- @@ -200,10 +200,8 @@ gmac_attach(parent, self, aux) { u_int32_t command; command = pci_conf_read(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG); - printf("status %x\n", command); command |= PCI_COMMAND_IO_ENABLE | PCI_COMMAND_MEM_ENABLE | PCI_COMMAND_MASTER_ENABLE; - printf("status %x\n", command); pci_conf_write(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG, command); #ifdef USE_IO diff --git a/sys/arch/powerpc/pci/mpcpcibus.c b/sys/arch/powerpc/pci/mpcpcibus.c index cb7dea20641..dbe86716df5 100644 --- a/sys/arch/powerpc/pci/mpcpcibus.c +++ b/sys/arch/powerpc/pci/mpcpcibus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpcpcibus.c,v 1.15 2000/03/31 04:25:41 rahnds Exp $ */ +/* $OpenBSD: mpcpcibus.c,v 1.16 2000/04/01 15:38:21 rahnds Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -847,7 +847,6 @@ mpc_intr_establish(lcv, ih, level, func, arg, name) void *arg; char *name; { - printf("mpc_pintr_establish called for [%s]\n", name); return (*intr_establish_func)(lcv, ih, IST_LEVEL, level, func, arg, name); #if 0 |