Skip to content

Commit

Permalink
gpio: tegra186: Remove tegra186_gpio_lock_class
Browse files Browse the repository at this point in the history
This is no longer required after commit 959bc7b
("gpio: Automatically add lockdep keys")

Signed-off-by: Axel Lin <[email protected]>
Acked-by: Thierry Reding <[email protected]>
Signed-off-by: Linus Walleij <[email protected]>
  • Loading branch information
AxelLin authored and linusw committed Nov 13, 2017
1 parent 924d4db commit 24f0966
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions drivers/gpio/gpio-tegra186.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 24f0966

Please sign in to comment.