From 62bcd38cc3d3c6f344a165f9169d1eb28d07f863 Mon Sep 17 00:00:00 2001 From: florian Date: Wed, 26 Sep 2012 12:53:58 +0000 Subject: [targets] get rid of the IRQF_SAMPLE_RANDOM flag git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33558 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../linux/s3c24xx/files-2.6.30/drivers/input/touchscreen/s3c2410_ts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'target/linux/s3c24xx') 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 f980bfcce..93163ff50 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); -- cgit v1.2.3