diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-09-06 02:04:51 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-09-06 02:04:51 +0000 |
commit | ff7dba6e0e2f300b2e4a0f5c95369a0cbc08504d (patch) | |
tree | 2bba47ea53333fc1bc79cac1cde2a39eaf23bde8 /sys | |
parent | 393910e8b4136e771616d1dac32fe5706c7e2ac1 (diff) |
boot message cleanup.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/powerpc/mac/openpic.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/powerpc/mac/openpic.c b/sys/arch/powerpc/mac/openpic.c index 71dc12ff0c3..301b7a90fdb 100644 --- a/sys/arch/powerpc/mac/openpic.c +++ b/sys/arch/powerpc/mac/openpic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: openpic.c,v 1.6 2000/07/28 13:09:01 rahnds Exp $ */ +/* $OpenBSD: openpic.c,v 1.7 2000/09/06 02:04:50 rahnds Exp $ */ /*- * Copyright (c) 1995 Per Fogelstrom @@ -162,7 +162,7 @@ openpic_attach(parent, self, aux) openpic_base = (vaddr_t) mapiodev (ca->ca_baseaddr + ca->ca_reg[0], 0x22000); - printf("version %x", openpic_read(OPENPIC_VENDOR_ID)); + printf(": version 0x%x", openpic_read(OPENPIC_VENDOR_ID)); openpic_init(); @@ -181,6 +181,7 @@ openpic_attach(parent, self, aux) mac_intr_establish(parent, 0x37, IST_LEVEL, IPL_HIGH, prog_switch, 0x37, "prog button"); #endif + ppc_intr_enable(1); printf("\n"); } |