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/arch/arm/xscale | |
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/arch/arm/xscale')
-rw-r--r-- | sys/arch/arm/xscale/i80321_clock.c | 4 | ||||
-rw-r--r-- | sys/arch/arm/xscale/pxa2x0_clock.c | 4 |
2 files changed, 2 insertions, 6 deletions
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; |