Nuke some remaining debug aprint

This commit is contained in:
matt 2008-07-03 06:17:24 +00:00
parent 45df48f8af
commit 74055e51f8
1 changed files with 2 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: omap2_gpio.c,v 1.3 2008/04/28 20:23:14 martin Exp $ */
/* $NetBSD: omap2_gpio.c,v 1.4 2008/07/03 06:17:24 matt Exp $ */
/*-
* Copyright (c) 2007 The NetBSD Foundation, Inc.
* All rights reserved.
@ -28,7 +28,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: omap2_gpio.c,v 1.3 2008/04/28 20:23:14 martin Exp $");
__KERNEL_RCSID(0, "$NetBSD: omap2_gpio.c,v 1.4 2008/07/03 06:17:24 matt Exp $");
#define _INTR_PRIVATE
@ -106,7 +106,6 @@ gpio_pic_unblock_irqs(struct pic_softc *pic, size_t irq_base, uint32_t irq_mask)
struct gpio_softc * const gpio = PIC_TO_SOFTC(pic);
KASSERT(irq_base == 0);
aprint_debug_dev(&gpio->gpio_dev, "unblock: mask=%x\n", irq_mask);
gpio->gpio_enable_mask |= irq_mask;
/*
* If this a level source, ack it now. If it's still asserted
@ -124,7 +123,6 @@ gpio_pic_block_irqs(struct pic_softc *pic, size_t irq_base, uint32_t irq_mask)
struct gpio_softc * const gpio = PIC_TO_SOFTC(pic);
KASSERT(irq_base == 0);
aprint_debug_dev(&gpio->gpio_dev, "block: mask=%x\n", irq_mask);
gpio->gpio_enable_mask &= ~irq_mask;
GPIO_WRITE(gpio, GPIO_CLEARIRQENABLE1, irq_mask);
/*
@ -148,7 +146,6 @@ gpio_pic_find_pending_irqs(struct pic_softc *pic)
if (pending == 0)
return 0;
aprint_debug_dev(&gpio->gpio_dev, "pending=%x\n", pending);
/*
* Now find all the pending bits and mark them as pending.
*/