diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-01-05 08:59:07 -0500 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2010-03-07 16:16:56 -0500 |
commit | f99344fc69c3df46786a39ea4283a4175ea40b3f (patch) | |
tree | 72a3b44540da44d3b42de9b310f758ab50468d6e /drivers/rtc | |
parent | 0e820ab60118e06db62ef4e55b6dd96db807a34e (diff) |
mfd: Add a data argument to the WM8350 IRQ free function
To better match genirq.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-wm8350.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-wm8350.c b/drivers/rtc/rtc-wm8350.c index f1e440521c54..a5512f515998 100644 --- a/drivers/rtc/rtc-wm8350.c +++ b/drivers/rtc/rtc-wm8350.c | |||
@@ -478,8 +478,8 @@ static int __devexit wm8350_rtc_remove(struct platform_device *pdev) | |||
478 | struct wm8350 *wm8350 = platform_get_drvdata(pdev); | 478 | struct wm8350 *wm8350 = platform_get_drvdata(pdev); |
479 | struct wm8350_rtc *wm_rtc = &wm8350->rtc; | 479 | struct wm8350_rtc *wm_rtc = &wm8350->rtc; |
480 | 480 | ||
481 | wm8350_free_irq(wm8350, WM8350_IRQ_RTC_SEC); | 481 | wm8350_free_irq(wm8350, WM8350_IRQ_RTC_SEC, wm8350); |
482 | wm8350_free_irq(wm8350, WM8350_IRQ_RTC_ALM); | 482 | wm8350_free_irq(wm8350, WM8350_IRQ_RTC_ALM, wm8350); |
483 | 483 | ||
484 | rtc_device_unregister(wm_rtc->rtc); | 484 | rtc_device_unregister(wm_rtc->rtc); |
485 | 485 | ||