diff options
Diffstat (limited to 'drivers/rtc/rtc-efi.c')
-rw-r--r-- | drivers/rtc/rtc-efi.c | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/drivers/rtc/rtc-efi.c b/drivers/rtc/rtc-efi.c index 1a0c37c9152b..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 | ||
@@ -218,18 +214,7 @@ static struct platform_driver efi_rtc_driver = { | |||
218 | .remove = __exit_p(efi_rtc_remove), | 214 | .remove = __exit_p(efi_rtc_remove), |
219 | }; | 215 | }; |
220 | 216 | ||
221 | static int __init efi_rtc_init(void) | 217 | module_platform_driver_probe(efi_rtc_driver, efi_rtc_probe); |
222 | { | ||
223 | return platform_driver_probe(&efi_rtc_driver, efi_rtc_probe); | ||
224 | } | ||
225 | |||
226 | static void __exit efi_rtc_exit(void) | ||
227 | { | ||
228 | platform_driver_unregister(&efi_rtc_driver); | ||
229 | } | ||
230 | |||
231 | module_init(efi_rtc_init); | ||
232 | module_exit(efi_rtc_exit); | ||
233 | 218 | ||
234 | MODULE_AUTHOR("dann frazier <dannf@hp.com>"); | 219 | MODULE_AUTHOR("dann frazier <dannf@hp.com>"); |
235 | MODULE_LICENSE("GPL"); | 220 | MODULE_LICENSE("GPL"); |