diff options
Diffstat (limited to 'drivers/input/misc/dm355evm_keys.c')
| -rw-r--r-- | drivers/input/misc/dm355evm_keys.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/input/misc/dm355evm_keys.c b/drivers/input/misc/dm355evm_keys.c index 35083c6836c..c1313d8535c 100644 --- a/drivers/input/misc/dm355evm_keys.c +++ b/drivers/input/misc/dm355evm_keys.c @@ -213,7 +213,8 @@ static int __devinit dm355evm_keys_probe(struct platform_device *pdev)  	/* REVISIT:  flush the event queue? */  	status = request_threaded_irq(keys->irq, NULL, dm355evm_keys_irq, -			IRQF_TRIGGER_FALLING, dev_name(&pdev->dev), keys); +				      IRQF_TRIGGER_FALLING | IRQF_ONESHOT, +				      dev_name(&pdev->dev), keys);  	if (status < 0)  		goto fail2;  |