Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

regulator: Remove more wm831x-specific IRQ operations

These are the last users in the tree.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>

authored by

Mark Brown and committed by
Liam Girdwood
69952369 42ab616a

+3 -3
+3 -3
drivers/regulator/wm831x-dcdc.c
··· 604 604 605 605 platform_set_drvdata(pdev, NULL); 606 606 607 - wm831x_free_irq(wm831x, platform_get_irq_byname(pdev, "HC"), dcdc); 608 - wm831x_free_irq(wm831x, platform_get_irq_byname(pdev, "UV"), dcdc); 607 + free_irq(platform_get_irq_byname(pdev, "HC"), dcdc); 608 + free_irq(platform_get_irq_byname(pdev, "UV"), dcdc); 609 609 regulator_unregister(dcdc->regulator); 610 610 if (dcdc->dvs_gpio) 611 611 gpio_free(dcdc->dvs_gpio); ··· 780 780 781 781 platform_set_drvdata(pdev, NULL); 782 782 783 - wm831x_free_irq(wm831x, platform_get_irq_byname(pdev, "UV"), dcdc); 783 + free_irq(platform_get_irq_byname(pdev, "UV"), dcdc); 784 784 regulator_unregister(dcdc->regulator); 785 785 kfree(dcdc); 786 786