Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec4665c4 authored by Yong Zhang's avatar Yong Zhang Committed by Dmitry Torokhov
Browse files

Input: remove IRQF_DISABLED from drivers



This flag is a NOOP and can be removed now.

Signed-off-by: default avatarYong Zhang <yong.zhang0@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 5d7e7d47
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -550,7 +550,7 @@ static int __devinit adp5588_probe(struct i2c_client *client,
	}

	error = request_irq(client->irq, adp5588_irq,
			    IRQF_TRIGGER_FALLING | IRQF_DISABLED,
			    IRQF_TRIGGER_FALLING,
			    client->dev.driver->name, kpad);
	if (error) {
		dev_err(&client->dev, "irq %d busy?\n", client->irq);
+1 −1
Original line number Diff line number Diff line
@@ -271,7 +271,7 @@ static int __init davinci_ks_probe(struct platform_device *pdev)
	}

	error = request_irq(davinci_ks->irq, davinci_ks_interrupt,
			  IRQF_DISABLED, pdev->name, davinci_ks);
			  0, pdev->name, davinci_ks);
	if (error < 0) {
		dev_err(dev, "unable to register davinci key scan interrupt\n");
		goto fail5;
+1 −1
Original line number Diff line number Diff line
@@ -323,7 +323,7 @@ static int __devinit ep93xx_keypad_probe(struct platform_device *pdev)
	platform_set_drvdata(pdev, keypad);

	err = request_irq(keypad->irq, ep93xx_keypad_irq_handler,
			  IRQF_DISABLED, pdev->name, keypad);
			  0, pdev->name, keypad);
	if (err)
		goto failed_free_dev;

+1 −1
Original line number Diff line number Diff line
@@ -510,7 +510,7 @@ static int __devinit imx_keypad_probe(struct platform_device *pdev)
	/* Ensure that the keypad will stay dormant until opened */
	imx_keypad_inhibit(keypad);

	error = request_irq(irq, imx_keypad_irq_handler, IRQF_DISABLED,
	error = request_irq(irq, imx_keypad_irq_handler, 0,
			    pdev->name, keypad);
	if (error) {
		dev_err(&pdev->dev, "failed to request IRQ\n");
+1 −1
Original line number Diff line number Diff line
@@ -129,7 +129,7 @@ static int __devinit jornada720_kbd_probe(struct platform_device *pdev)

	err = request_irq(IRQ_GPIO0,
			  jornada720_kbd_interrupt,
			  IRQF_DISABLED | IRQF_TRIGGER_FALLING,
			  IRQF_TRIGGER_FALLING,
			  "jornadakbd", pdev);
	if (err) {
		printk(KERN_INFO "jornadakbd720_kbd: Unable to grab IRQ\n");
Loading