diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2007-01-11 07:24:53 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2007-01-11 07:24:53 +0000 |
commit | 0b5535ee4e040dca73d788f49082e41b20ed7253 (patch) | |
tree | 21363e5039a59ba1482392060712de45ab3b524b /sys | |
parent | 802bd78c51706decba374b95983ebccbc1afa9b6 (diff) |
do not report the clock frequencies on arm becuase there is no
real need to be verbose here; discussed with drahn@
ok kettenis@, miod@, deraadt@ and others
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/arm/footbridge/footbridge_clock.c | 5 | ||||
-rw-r--r-- | sys/arch/arm/sa11x0/sa11x0_ost.c | 4 | ||||
-rw-r--r-- | sys/arch/arm/xscale/i80321_clock.c | 4 | ||||
-rw-r--r-- | sys/arch/arm/xscale/pxa2x0_clock.c | 4 |
4 files changed, 4 insertions, 13 deletions
diff --git a/sys/arch/arm/footbridge/footbridge_clock.c b/sys/arch/arm/footbridge/footbridge_clock.c index 4bf62a466e9..0c695192213 100644 --- a/sys/arch/arm/footbridge/footbridge_clock.c +++ b/sys/arch/arm/footbridge/footbridge_clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: footbridge_clock.c,v 1.7 2004/09/16 21:52:46 miod Exp $ */ +/* $OpenBSD: footbridge_clock.c,v 1.8 2007/01/11 07:24:52 robert Exp $ */ /* $NetBSD: footbridge_clock.c,v 1.17 2003/03/23 14:12:25 chris Exp $ */ /* @@ -283,9 +283,6 @@ cpu_initclocks() if (profhz == 0) profhz = stathz * 8; - /* Report the clock frequencies */ - printf("clock: hz %d stathz %d profhz %d\n", hz, stathz, profhz); - /* Setup timer 1 and claim interrupt */ clock_sc->sc_clock_count = load_timer(TIMER_1_BASE, hz); diff --git a/sys/arch/arm/sa11x0/sa11x0_ost.c b/sys/arch/arm/sa11x0/sa11x0_ost.c index 730951fb58f..5ecde26e600 100644 --- a/sys/arch/arm/sa11x0/sa11x0_ost.c +++ b/sys/arch/arm/sa11x0/sa11x0_ost.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sa11x0_ost.c,v 1.6 2005/02/28 13:21:17 uwe Exp $ */ +/* $OpenBSD: sa11x0_ost.c,v 1.7 2007/01/11 07:24:52 robert Exp $ */ /* $NetBSD: sa11x0_ost.c,v 1.11 2003/07/15 00:24:51 lukem Exp $ */ /* @@ -253,8 +253,6 @@ cpu_initclocks() profhz = stathz; saost_sc->sc_statclock_step = TIMER_FREQUENCY / stathz; - printf("clock: hz=%d stathz=%d\n", hz, stathz); - /* Use the channels 0 and 1 for hardclock and statclock, respectively */ saost_sc->sc_clock_count = TIMER_FREQUENCY / hz; saost_sc->sc_statclock_count = TIMER_FREQUENCY / stathz; diff --git a/sys/arch/arm/xscale/i80321_clock.c b/sys/arch/arm/xscale/i80321_clock.c index 05ec5e90f16..df1ea691d23 100644 --- a/sys/arch/arm/xscale/i80321_clock.c +++ b/sys/arch/arm/xscale/i80321_clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: i80321_clock.c,v 1.5 2006/08/24 21:32:19 deraadt Exp $ */ +/* $OpenBSD: i80321_clock.c,v 1.6 2007/01/11 07:24:52 robert Exp $ */ /* * Copyright (c) 2006 Dale Rahn <drahn@openbsd.org> @@ -264,8 +264,6 @@ cpu_initclocks() ticks_per_intr = ticks_per_second / hz; - printf("clock: hz= %d stathz = %d\n", hz, stathz); - evcount_attach(&clk_count, "clock", (void *)&clk_irq, &evcount_intr); evcount_attach(&stat_count, "stat", (void *)&stat_irq, &evcount_intr); diff --git a/sys/arch/arm/xscale/pxa2x0_clock.c b/sys/arch/arm/xscale/pxa2x0_clock.c index e281794cd3c..efbc4d2be57 100644 --- a/sys/arch/arm/xscale/pxa2x0_clock.c +++ b/sys/arch/arm/xscale/pxa2x0_clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pxa2x0_clock.c,v 1.4 2006/03/07 22:12:46 uwe Exp $ */ +/* $OpenBSD: pxa2x0_clock.c,v 1.5 2007/01/11 07:24:52 robert Exp $ */ /* * Copyright (c) 2005 Dale Rahn <drahn@openbsd.org> @@ -225,8 +225,6 @@ cpu_initclocks() pxaost_sc->sc_clock_step_err_cnt = CLK4_TIMER_FREQUENCY % hz; pxaost_sc->sc_clock_step_error = 0; - printf("clock: hz=%d stathz=%d\n", hz, stathz); - /* Use the channels 0 and 1 for hardclock and statclock, respectively */ pxaost_sc->sc_clock_count = pxaost_sc->sc_clock_step; pxaost_sc->sc_statclock_count = CLK4_TIMER_FREQUENCY / stathz; |