Commit 15a1d5c9 authored by Yoshihiro Shimoda's avatar Yoshihiro Shimoda Committed by Greg Kroah-Hartman

USB: m66592-udc: fix use old interrupt flags

This patch fixes the problem that used SA_* flags.
Signed-off-by: default avatarYoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 4cf2503c
...@@ -44,7 +44,7 @@ MODULE_DESCRIPTION("M66592 USB gadget driiver"); ...@@ -44,7 +44,7 @@ MODULE_DESCRIPTION("M66592 USB gadget driiver");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_AUTHOR("Yoshihiro Shimoda"); MODULE_AUTHOR("Yoshihiro Shimoda");
#define DRIVER_VERSION "9 May 2007" #define DRIVER_VERSION "29 May 2007"
/* module parameters */ /* module parameters */
static unsigned short clock = M66592_XTAL24; static unsigned short clock = M66592_XTAL24;
...@@ -1567,7 +1567,7 @@ static int __init m66592_probe(struct platform_device *pdev) ...@@ -1567,7 +1567,7 @@ static int __init m66592_probe(struct platform_device *pdev)
m66592->bi_bufnum = M66592_BASE_BUFNUM; m66592->bi_bufnum = M66592_BASE_BUFNUM;
ret = request_irq(irq, m66592_irq, SA_INTERRUPT | SA_SHIRQ, ret = request_irq(irq, m66592_irq, IRQF_DISABLED | IRQF_SHARED,
udc_name, m66592); udc_name, m66592);
if (ret < 0) { if (ret < 0) {
printk(KERN_ERR "request_irq error (%d)\n", ret); printk(KERN_ERR "request_irq error (%d)\n", ret);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment