Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b7fd4a0aa52c95309219240bf9c5fd210a6e7061
Commit:     b7fd4a0aa52c95309219240bf9c5fd210a6e7061
Parent:     b5b16c5296c3276bb409a948173d557241b74379
Author:     Thomas Gleixner <[EMAIL PROTECTED]>
AuthorDate: Thu Apr 12 01:35:51 2007 -0400
Committer:  Dmitry Torokhov <[EMAIL PROTECTED]>
CommitDate: Thu Apr 12 01:35:51 2007 -0400

    Input: pxa27x - do not use deprecated SA_INTERRUPT flag
    
    IRQF_DISABLED is the proper name.
    
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Dmitry Torokhov <[EMAIL PROTECTED]>
---
 drivers/input/keyboard/pxa27x_keyboard.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/input/keyboard/pxa27x_keyboard.c 
b/drivers/input/keyboard/pxa27x_keyboard.c
index 993df87..06eaf76 100644
--- a/drivers/input/keyboard/pxa27x_keyboard.c
+++ b/drivers/input/keyboard/pxa27x_keyboard.c
@@ -181,7 +181,7 @@ static int __devinit pxakbd_probe(struct platform_device 
*pdev)
                }
        }
 
-       error = request_irq(IRQ_KEYPAD, pxakbd_irq_handler, SA_INTERRUPT,
+       error = request_irq(IRQ_KEYPAD, pxakbd_irq_handler, IRQF_DISABLED,
                            DRIVER_NAME, pdev);
        if (error) {
                printk(KERN_ERR "Cannot request keypad IRQ\n");
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to