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

« back to all changes in this revision

Viewing changes to drivers/gpio/max732x.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:
470
470
                        if (!(chip->dir_input & (1 << lvl)))
471
471
                                continue;
472
472
 
473
 
                        set_irq_chip_data(irq, chip);
474
 
                        set_irq_chip_and_handler(irq, &max732x_irq_chip,
 
473
                        irq_set_chip_data(irq, chip);
 
474
                        irq_set_chip_and_handler(irq, &max732x_irq_chip,
475
475
                                                 handle_edge_irq);
476
 
                        set_irq_nested_thread(irq, 1);
 
476
                        irq_set_nested_thread(irq, 1);
477
477
#ifdef CONFIG_ARM
478
478
                        set_irq_flags(irq, IRQF_VALID);
479
479
#else
480
 
                        set_irq_noprobe(irq);
 
480
                        irq_set_noprobe(irq);
481
481
#endif
482
482
                }
483
483