diff options
author | Axel Lin <axel.lin@ingics.com> | 2017-11-10 14:10:55 +0800 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2017-11-13 11:43:10 +0100 |
commit | 24f0966c3e3f52a96e888504d60810d9df5b2d42 (patch) | |
tree | 62b5d34d1d6d0a1996ca395edbb8c9a971d47f28 /drivers | |
parent | 924d4db29f1237f9fe90a7439d2ee81837d282bd (diff) | |
download | linux-24f0966c3e3f52a96e888504d60810d9df5b2d42.tar.gz linux-24f0966c3e3f52a96e888504d60810d9df5b2d42.tar.bz2 linux-24f0966c3e3f52a96e888504d60810d9df5b2d42.zip |
gpio: tegra186: Remove tegra186_gpio_lock_class
This is no longer required after commit 959bc7b22bd2
("gpio: Automatically add lockdep keys")
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpio/gpio-tegra186.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpio/gpio-tegra186.c b/drivers/gpio/gpio-tegra186.c index b55b5ca882c7..7f1aa4c21e0d 100644 --- a/drivers/gpio/gpio-tegra186.c +++ b/drivers/gpio/gpio-tegra186.c @@ -404,8 +404,6 @@ static const struct irq_domain_ops tegra186_gpio_irq_domain_ops = { .xlate = tegra186_gpio_irq_domain_xlate, }; -static struct lock_class_key tegra186_gpio_lock_class; - static int tegra186_gpio_probe(struct platform_device *pdev) { unsigned int i, j, offset; @@ -496,7 +494,6 @@ static int tegra186_gpio_probe(struct platform_device *pdev) irq->chip = &gpio->intc; irq->domain_ops = &tegra186_gpio_irq_domain_ops; irq->handler = handle_simple_irq; - irq->lock_key = &tegra186_gpio_lock_class; irq->default_type = IRQ_TYPE_NONE; irq->parent_handler = tegra186_gpio_irq; irq->parent_handler_data = gpio; |