diff options
-rw-r--r-- | drivers/rtc/rtc-starfire.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-starfire.c b/drivers/rtc/rtc-starfire.c index db7d0765aabd..987b5ec0ae56 100644 --- a/drivers/rtc/rtc-starfire.c +++ b/drivers/rtc/rtc-starfire.c | |||
@@ -39,8 +39,10 @@ static const struct rtc_class_ops starfire_rtc_ops = { | |||
39 | 39 | ||
40 | static int __init starfire_rtc_probe(struct platform_device *pdev) | 40 | static int __init starfire_rtc_probe(struct platform_device *pdev) |
41 | { | 41 | { |
42 | struct rtc_device *rtc = rtc_device_register("starfire", &pdev->dev, | 42 | struct rtc_device *rtc; |
43 | &starfire_rtc_ops, THIS_MODULE); | 43 | |
44 | rtc = devm_rtc_device_register(&pdev->dev, "starfire", | ||
45 | &starfire_rtc_ops, THIS_MODULE); | ||
44 | if (IS_ERR(rtc)) | 46 | if (IS_ERR(rtc)) |
45 | return PTR_ERR(rtc); | 47 | return PTR_ERR(rtc); |
46 | 48 | ||
@@ -51,10 +53,6 @@ static int __init starfire_rtc_probe(struct platform_device *pdev) | |||
51 | 53 | ||
52 | static int __exit starfire_rtc_remove(struct platform_device *pdev) | 54 | static int __exit starfire_rtc_remove(struct platform_device *pdev) |
53 | { | 55 | { |
54 | struct rtc_device *rtc = platform_get_drvdata(pdev); | ||
55 | |||
56 | rtc_device_unregister(rtc); | ||
57 | |||
58 | return 0; | 56 | return 0; |
59 | } | 57 | } |
60 | 58 | ||