diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-12-28 05:18:26 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-12-28 05:18:26 +0000 |
commit | 3a9a2ae390ad1180c88b8df627466788ef2be777 (patch) | |
tree | a5f4ff09bc6ce557896924ec7312cfccfc77de46 | |
parent | 0d63b0677296ee8930cb4443af885bae8aaebfbc (diff) |
fix new line in dmesg print on 8k cpus
-rw-r--r-- | sys/arch/hppa/dev/cpu.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/hppa/dev/cpu.c b/sys/arch/hppa/dev/cpu.c index f0d3f7999b5..daf2c005171 100644 --- a/sys/arch/hppa/dev/cpu.c +++ b/sys/arch/hppa/dev/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.27 2004/10/26 21:27:53 mickey Exp $ */ +/* $OpenBSD: cpu.c,v 1.28 2004/12/28 05:18:25 mickey Exp $ */ /* * Copyright (c) 1998-2003 Michael Shalayeff @@ -151,10 +151,11 @@ cpuattach(parent, self, aux) pdc_cache.dt_size, pdc_cache.dt_conf.tc_cst? "" : "in", p); if (pdc_btlb.finfo.num_c) - printf(", %u BTLB\n", pdc_btlb.finfo.num_c); + printf(", %u BTLB", pdc_btlb.finfo.num_c); else if (pdc_btlb.finfo.num_i || pdc_btlb.finfo.num_d) - printf(", %u/%u D/I BTLBs\n", + printf(", %u/%u D/I BTLBs", pdc_btlb.finfo.num_i, pdc_btlb.finfo.num_d); + printf("\n"); /* sanity against lusers amongst config editors */ if (ca->ca_irq == 31) |