diff options
author | 2011-11-15 23:17:01 +0000 | |
---|---|---|
committer | 2011-11-15 23:17:01 +0000 | |
commit | 6e10b38713b9e15afc1381a5103addbf763713cf (patch) | |
tree | f085318c36409ba4088369a2c9caa548edb42c72 | |
parent | wooooops defines missing from previous commit (diff) | |
download | wireguard-openbsd-6e10b38713b9e15afc1381a5103addbf763713cf.tar.xz wireguard-openbsd-6e10b38713b9e15afc1381a5103addbf763713cf.zip |
Remove pointless/debug prints during config.
-rw-r--r-- | sys/arch/beagle/dev/ampintc.c | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/sys/arch/beagle/dev/ampintc.c b/sys/arch/beagle/dev/ampintc.c index cfe18a1afd6..bc126694fee 100644 --- a/sys/arch/beagle/dev/ampintc.c +++ b/sys/arch/beagle/dev/ampintc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ampintc.c,v 1.8 2011/11/10 19:37:01 uwe Exp $ */ +/* $OpenBSD: ampintc.c,v 1.9 2011/11/15 23:17:01 drahn Exp $ */ /* * Copyright (c) 2007,2009,2011 Dale Rahn <drahn@openbsd.org> * @@ -196,12 +196,6 @@ ampintc_attach(struct device *parent, struct device *self, void *args) iot = oa->oa_iot; - printf("ICP addr 0x%x-0x%x\n", oa->oa_dev->mem[0].addr, - oa->oa_dev->mem[0].addr + oa->oa_dev->mem[0].size); - - printf("ICD addr 0x%x-0x%x\n", oa->oa_dev->mem[1].addr, - oa->oa_dev->mem[1].addr + oa->oa_dev->mem[1].size); - if (bus_space_map(iot, oa->oa_dev->mem[0].addr, oa->oa_dev->mem[0].size, 0, &p_ioh)) panic("ampintc_attach: ICP bus_space_map failed!"); @@ -219,16 +213,6 @@ ampintc_attach(struct device *parent, struct device *self, void *args) sc->sc_nintr = nintr; printf(" nirq %d\n", nintr); - printf("periph_id 0 %x\n", - bus_space_read_1(iot, d_ioh, ICD_PERIPH_ID_0)); - printf("periph_id 1 %x\n", - bus_space_read_1(iot, d_ioh, ICD_PERIPH_ID_1)); - printf("periph_id 2 %x\n", - bus_space_read_1(iot, d_ioh, ICD_PERIPH_ID_2)); - printf("periph_id 3 %x\n", - bus_space_read_1(iot, d_ioh, ICD_PERIPH_ID_3)); - printf("periph_id 4 %x\n", - bus_space_read_1(iot, d_ioh, ICD_PERIPH_ID_4)); /* Disable all interrupts, clear all pending */ for (i = 0; i < nintr/32; i++) { |