Commit 308247d2 authored by Alexandre Belloni's avatar Alexandre Belloni
Browse files

rtc: s5m: enable wakeup only when available



Call device_init_wakeup() only when alarms are available and the RTC is
actually able to wake up the system.

Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
Reviewed-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Link: https://lore.kernel.org/r/20210804104133.5158-3-alexandre.belloni@bootlin.com
parent 1ed4dba2
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -786,8 +786,6 @@ static int s5m_rtc_probe(struct platform_device *pdev)
	if (ret)
		return ret;

	device_init_wakeup(&pdev->dev, 1);

	info->rtc_dev = devm_rtc_allocate_device(&pdev->dev);
	if (IS_ERR(info->rtc_dev))
		return PTR_ERR(info->rtc_dev);
@@ -805,6 +803,7 @@ static int s5m_rtc_probe(struct platform_device *pdev)
				info->irq, ret);
			return ret;
		}
		device_init_wakeup(&pdev->dev, 1);
	}

	return devm_rtc_register_device(info->rtc_dev);