diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-09-26 12:53:58 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-09-26 12:53:58 +0000 |
commit | 62bcd38cc3d3c6f344a165f9169d1eb28d07f863 (patch) | |
tree | 530c457ee38e2b0880d49c9eea870c1b5fffa507 /target/linux/omap24xx | |
parent | b20bdba44f93acca727995f06eb79b563b428aab (diff) |
[targets] get rid of the IRQF_SAMPLE_RANDOM flag
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33558 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/omap24xx')
-rw-r--r-- | target/linux/omap24xx/patches-3.3/315-n800-touchscreen-and-keypad-drivers.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/omap24xx/patches-3.3/315-n800-touchscreen-and-keypad-drivers.patch b/target/linux/omap24xx/patches-3.3/315-n800-touchscreen-and-keypad-drivers.patch index 799c1de09..106a5d80c 100644 --- a/target/linux/omap24xx/patches-3.3/315-n800-touchscreen-and-keypad-drivers.patch +++ b/target/linux/omap24xx/patches-3.3/315-n800-touchscreen-and-keypad-drivers.patch @@ -485,7 +485,7 @@ Touchscreen and keypad are fully functional, audio part only provides power mana + + irq_set_irq_type(kp->irq, IRQ_TYPE_EDGE_FALLING); + -+ r = request_irq(kp->irq, tsc2301_kp_irq_handler, IRQF_SAMPLE_RANDOM, ++ r = request_irq(kp->irq, tsc2301_kp_irq_handler, 0, + "tsc2301-kp", tsc); + if (r < 0) { + dev_err(&tsc->spi->dev, "unable to get kbirq IRQ"); @@ -1179,7 +1179,7 @@ Touchscreen and keypad are fully functional, audio part only provides power mana + tsc2301_ts_start_scan(tsc); + + r = request_irq(ts->irq, tsc2301_ts_irq_handler, -+ IRQF_SAMPLE_RANDOM | IRQF_TRIGGER_FALLING, ++ IRQF_TRIGGER_FALLING, + "tsc2301-ts", tsc); + if (r < 0) { + dev_err(&tsc->spi->dev, "unable to get DAV IRQ"); |