Commit 479243b2 authored by Jingoo Han's avatar Jingoo Han Committed by Linus Torvalds
Browse files

rtc: hid-sensor-time: use devm_rtc_device_register()



devm_rtc_device_register() is device managed and makes cleanup paths
simpler.

Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 360fe134
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -255,8 +255,9 @@ static int hid_time_probe(struct platform_device *pdev)
		return ret;
	}

	time_state->rtc = rtc_device_register("hid-sensor-time",
				&pdev->dev, &hid_time_rtc_ops, THIS_MODULE);
	time_state->rtc = devm_rtc_device_register(&pdev->dev,
					"hid-sensor-time", &hid_time_rtc_ops,
					THIS_MODULE);

	if (IS_ERR(time_state->rtc)) {
		dev_err(&pdev->dev, "rtc device register failed!\n");
@@ -269,9 +270,7 @@ static int hid_time_probe(struct platform_device *pdev)
static int hid_time_remove(struct platform_device *pdev)
{
	struct hid_sensor_hub_device *hsdev = pdev->dev.platform_data;
	struct hid_time_state *time_state = platform_get_drvdata(pdev);

	rtc_device_unregister(time_state->rtc);
	sensor_hub_remove_callback(hsdev, HID_USAGE_SENSOR_TIME);

	return 0;