diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-04-29 19:19:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-04-29 21:28:29 -0400 |
commit | 6ae15b0eb7f59d9ac82a6ea8c0487782a563aae9 (patch) | |
tree | 61a1bb66e22a1fd5da85cf652afd2667222c816f /drivers/rtc/rtc-efi.c | |
parent | 2c0011dd2fb09d6bcfc0ff4524131a08b0006e47 (diff) |
rtc: rtc-efi: use devm_rtc_device_register()
devm_rtc_device_register() is device managed and makes cleanup paths
simpler.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/rtc-efi.c')
-rw-r--r-- | drivers/rtc/rtc-efi.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/rtc/rtc-efi.c b/drivers/rtc/rtc-efi.c index e70666272266..b3c8c0b1709d 100644 --- a/drivers/rtc/rtc-efi.c +++ b/drivers/rtc/rtc-efi.c | |||
@@ -191,7 +191,7 @@ static int __init efi_rtc_probe(struct platform_device *dev) | |||
191 | { | 191 | { |
192 | struct rtc_device *rtc; | 192 | struct rtc_device *rtc; |
193 | 193 | ||
194 | rtc = rtc_device_register("rtc-efi", &dev->dev, &efi_rtc_ops, | 194 | rtc = devm_rtc_device_register(&dev->dev, "rtc-efi", &efi_rtc_ops, |
195 | THIS_MODULE); | 195 | THIS_MODULE); |
196 | if (IS_ERR(rtc)) | 196 | if (IS_ERR(rtc)) |
197 | return PTR_ERR(rtc); | 197 | return PTR_ERR(rtc); |
@@ -203,10 +203,6 @@ static int __init efi_rtc_probe(struct platform_device *dev) | |||
203 | 203 | ||
204 | static int __exit efi_rtc_remove(struct platform_device *dev) | 204 | static int __exit efi_rtc_remove(struct platform_device *dev) |
205 | { | 205 | { |
206 | struct rtc_device *rtc = platform_get_drvdata(dev); | ||
207 | |||
208 | rtc_device_unregister(rtc); | ||
209 | |||
210 | return 0; | 206 | return 0; |
211 | } | 207 | } |
212 | 208 | ||