diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-04-18 14:43:40 -0600 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-18 14:17:33 -0700 |
commit | 8034761c219ce545a9f4d3b23cfda47a0027cc8c (patch) | |
tree | 3fb827512d6be76150a9ae3740562a057cdb857e | |
parent | 532f17b5d59bf0deb6f1ff9bc1fb27d5b5011c09 (diff) | |
download | linux-3.10-8034761c219ce545a9f4d3b23cfda47a0027cc8c.tar.gz linux-3.10-8034761c219ce545a9f4d3b23cfda47a0027cc8c.tar.bz2 linux-3.10-8034761c219ce545a9f4d3b23cfda47a0027cc8c.zip |
USB: ehci-tegra: don't call set_irq_flags(IRQF_VALID)
This call is not needed; the IRQ controller should (and does) set up
interrupts correctly. set_irq_flags() isn't exported to modules, to
this also fixes compilation of ehci-tegra.c as a module.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/host/ehci-tegra.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-tegra.c b/drivers/usb/host/ehci-tegra.c index 73544bd440b..86183366647 100644 --- a/drivers/usb/host/ehci-tegra.c +++ b/drivers/usb/host/ehci-tegra.c @@ -731,7 +731,6 @@ static int tegra_ehci_probe(struct platform_device *pdev) err = -ENODEV; goto fail; } - set_irq_flags(irq, IRQF_VALID); #ifdef CONFIG_USB_OTG_UTILS if (pdata->operating_mode == TEGRA_USB_OTG) { |