This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / arch / arm / mach-pxa / irq.c
index a676a86..539b596 100644 (file)
@@ -97,23 +97,23 @@ static int pxa_gpio_irq_type(unsigned int irq, unsigned int type)
                type = __IRQT_RISEDGE | __IRQT_FALEDGE;
        }
 
-       printk(KERN_DEBUG "IRQ%d (GPIO%d): ", irq, gpio);
+       /* printk(KERN_DEBUG "IRQ%d (GPIO%d): ", irq, gpio); */
 
        pxa_gpio_mode(gpio | GPIO_IN);
 
        if (type & __IRQT_RISEDGE) {
-               printk("rising ");
+               /* printk("rising "); */
                __set_bit (gpio, GPIO_IRQ_rising_edge);
        } else
                __clear_bit (gpio, GPIO_IRQ_rising_edge);
 
        if (type & __IRQT_FALEDGE) {
-               printk("falling ");
+               /* printk("falling "); */
                __set_bit (gpio, GPIO_IRQ_falling_edge);
        } else
                __clear_bit (gpio, GPIO_IRQ_falling_edge);
 
-       printk("edges\n");
+       /* printk("edges\n"); */
 
        GRER(gpio) = GPIO_IRQ_rising_edge[idx] & GPIO_IRQ_mask[idx];
        GFER(gpio) = GPIO_IRQ_falling_edge[idx] & GPIO_IRQ_mask[idx];
@@ -133,7 +133,7 @@ static struct irqchip pxa_low_gpio_chip = {
        .ack            = pxa_ack_low_gpio,
        .mask           = pxa_mask_low_irq,
        .unmask         = pxa_unmask_low_irq,
-       .type           = pxa_gpio_irq_type,
+       .set_type       = pxa_gpio_irq_type,
 };
 
 /*
@@ -157,7 +157,7 @@ static void pxa_gpio_demux_handler(unsigned int irq, struct irqdesc *desc,
                        mask >>= 2;
                        do {
                                if (mask & 1)
-                                       desc->handle(irq, desc, regs);
+                                       desc_handle_irq(irq, desc, regs);
                                irq++;
                                desc++;
                                mask >>= 1;
@@ -172,7 +172,7 @@ static void pxa_gpio_demux_handler(unsigned int irq, struct irqdesc *desc,
                        desc = irq_desc + irq;
                        do {
                                if (mask & 1)
-                                       desc->handle(irq, desc, regs);
+                                       desc_handle_irq(irq, desc, regs);
                                irq++;
                                desc++;
                                mask >>= 1;
@@ -187,7 +187,7 @@ static void pxa_gpio_demux_handler(unsigned int irq, struct irqdesc *desc,
                        desc = irq_desc + irq;
                        do {
                                if (mask & 1)
-                                       desc->handle(irq, desc, regs);
+                                       desc_handle_irq(irq, desc, regs);
                                irq++;
                                desc++;
                                mask >>= 1;
@@ -203,7 +203,7 @@ static void pxa_gpio_demux_handler(unsigned int irq, struct irqdesc *desc,
                        desc = irq_desc + irq;
                        do {
                                if (mask & 1)
-                                       desc->handle(irq, desc, regs);
+                                       desc_handle_irq(irq, desc, regs);
                                irq++;
                                desc++;
                                mask >>= 1;
@@ -241,7 +241,7 @@ static struct irqchip pxa_muxed_gpio_chip = {
        .ack            = pxa_ack_muxed_gpio,
        .mask           = pxa_mask_muxed_gpio,
        .unmask         = pxa_unmask_muxed_gpio,
-       .type           = pxa_gpio_irq_type,
+       .set_type       = pxa_gpio_irq_type,
 };