Commit 558a40f7 authored by David Brownell's avatar David Brownell Committed by Linus Torvalds

rtc-omap build fix

Fix typo which breaks build.  How did that happen?
Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 83c6590c
...@@ -371,7 +371,7 @@ static int __devinit omap_rtc_probe(struct platform_device *pdev) ...@@ -371,7 +371,7 @@ static int __devinit omap_rtc_probe(struct platform_device *pdev)
goto fail; goto fail;
} }
platform_set_drvdata(pdev, rtc); platform_set_drvdata(pdev, rtc);
dev_set_devdata(&rtc->dev, mem); dev_set_drvdata(&rtc->dev, mem);
/* clear pending irqs, and set 1/second periodic, /* clear pending irqs, and set 1/second periodic,
* which we'll use instead of update irqs * which we'll use instead of update irqs
...@@ -453,7 +453,7 @@ static int __devexit omap_rtc_remove(struct platform_device *pdev) ...@@ -453,7 +453,7 @@ static int __devexit omap_rtc_remove(struct platform_device *pdev)
free_irq(omap_rtc_timer, rtc); free_irq(omap_rtc_timer, rtc);
free_irq(omap_rtc_alarm, rtc); free_irq(omap_rtc_alarm, rtc);
release_resource(dev_get_devdata(&rtc->dev)); release_resource(dev_get_drvdata(&rtc->dev));
rtc_device_unregister(rtc); rtc_device_unregister(rtc);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment