~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to arch/arm/mach-s3c2410/bast-irq.c

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
147
147
 
148
148
                __raw_writeb(0x0, BAST_VA_PC104_IRQMASK);
149
149
 
150
 
                set_irq_chained_handler(IRQ_ISA, bast_irq_pc104_demux);
 
150
                irq_set_chained_handler(IRQ_ISA, bast_irq_pc104_demux);
151
151
 
152
152
                /* register our IRQs */
153
153
 
154
154
                for (i = 0; i < 4; i++) {
155
155
                        unsigned int irqno = bast_pc104_irqs[i];
156
156
 
157
 
                        set_irq_chip(irqno, &bast_pc104_chip);
158
 
                        set_irq_handler(irqno, handle_level_irq);
 
157
                        irq_set_chip_and_handler(irqno, &bast_pc104_chip,
 
158
                                                 handle_level_irq);
159
159
                        set_irq_flags(irqno, IRQF_VALID);
160
160
                }
161
161
        }