rtc-omap build fix

Fix typo which breaks build. How did that happen?

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by David Brownell and committed by Linus Torvalds 558a40f7 83c6590c

+2 -2
+2 -2
drivers/rtc/rtc-omap.c
··· 371 goto fail; 372 } 373 platform_set_drvdata(pdev, rtc); 374 - dev_set_devdata(&rtc->dev, mem); 375 376 /* clear pending irqs, and set 1/second periodic, 377 * which we'll use instead of update irqs ··· 453 free_irq(omap_rtc_timer, rtc); 454 free_irq(omap_rtc_alarm, rtc); 455 456 - release_resource(dev_get_devdata(&rtc->dev)); 457 rtc_device_unregister(rtc); 458 return 0; 459 }
··· 371 goto fail; 372 } 373 platform_set_drvdata(pdev, rtc); 374 + dev_set_drvdata(&rtc->dev, mem); 375 376 /* clear pending irqs, and set 1/second periodic, 377 * which we'll use instead of update irqs ··· 453 free_irq(omap_rtc_timer, rtc); 454 free_irq(omap_rtc_alarm, rtc); 455 456 + release_resource(dev_get_drvdata(&rtc->dev)); 457 rtc_device_unregister(rtc); 458 return 0; 459 }