aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-efi.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/rtc/rtc-efi.c')
-rw-r--r--drivers/rtc/rtc-efi.c6
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
204static int __exit efi_rtc_remove(struct platform_device *dev) 204static 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