diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-09-26 12:53:58 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2012-09-26 12:53:58 +0000 |
commit | 4a67ccb16328fcc54a964a48ab54ad2dfe66ae42 (patch) | |
tree | 077ccbc48d37655215605b79e41f40c7a220fd34 /target/linux/s3c24xx | |
parent | 60eec72adbbe6d8e45a6a5a6b4d25b2b6c46c450 (diff) | |
download | upstream-4a67ccb16328fcc54a964a48ab54ad2dfe66ae42.tar.gz upstream-4a67ccb16328fcc54a964a48ab54ad2dfe66ae42.tar.bz2 upstream-4a67ccb16328fcc54a964a48ab54ad2dfe66ae42.zip |
get rid of the IRQF_SAMPLE_RANDOM flag
SVN-Revision: 33558
Diffstat (limited to 'target/linux/s3c24xx')
-rw-r--r-- | target/linux/s3c24xx/files-2.6.30/drivers/input/touchscreen/s3c2410_ts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/s3c24xx/files-2.6.30/drivers/input/touchscreen/s3c2410_ts.c b/target/linux/s3c24xx/files-2.6.30/drivers/input/touchscreen/s3c2410_ts.c index f980bfcce4..93163ff509 100644 --- a/target/linux/s3c24xx/files-2.6.30/drivers/input/touchscreen/s3c2410_ts.c +++ b/target/linux/s3c24xx/files-2.6.30/drivers/input/touchscreen/s3c2410_ts.c @@ -424,14 +424,14 @@ static int __init s3c2410ts_probe(struct platform_device *pdev) ts_filter_chain_clear(ts.chain); /* Get irqs */ - if (request_irq(IRQ_ADC, stylus_action, IRQF_SAMPLE_RANDOM, + if (request_irq(IRQ_ADC, stylus_action, 0, "s3c2410_action", ts.dev)) { dev_err(&pdev->dev, "Could not allocate ts IRQ_ADC !\n"); iounmap(base_addr); ret = -EIO; goto bail3; } - if (request_irq(IRQ_TC, stylus_updown, IRQF_SAMPLE_RANDOM, + if (request_irq(IRQ_TC, stylus_updown, 0, "s3c2410_action", ts.dev)) { dev_err(&pdev->dev, "Could not allocate ts IRQ_TC !\n"); free_irq(IRQ_ADC, ts.dev); |