Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ecf72c3d authored by Saravana Kannan's avatar Saravana Kannan Committed by Gerrit - the friendly Code Review server
Browse files

PM / devfreq: bimc-bwmon: Fix typo



Accidentally used a , instead of a ; to end statements. This change fixes
that. Should not have any functional impact.

Change-Id: I36ea6c49a8a8973f1856cac6709f01432e6d60c7
Signed-off-by: default avatarSaravana Kannan <skannan@codeaurora.org>
parent 6c5d9c98
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -376,11 +376,11 @@ static int bimc_bwmon_driver_probe(struct platform_device *pdev)
	m->hw.of_node = of_parse_phandle(dev->of_node, "qcom,target-dev", 0);
	if (!m->hw.of_node)
		return -EINVAL;
	m->hw.start_hwmon = &start_bw_hwmon,
	m->hw.stop_hwmon = &stop_bw_hwmon,
	m->hw.suspend_hwmon = &suspend_bw_hwmon,
	m->hw.resume_hwmon = &resume_bw_hwmon,
	m->hw.meas_bw_and_set_irq = &meas_bw_and_set_irq,
	m->hw.start_hwmon = &start_bw_hwmon;
	m->hw.stop_hwmon = &stop_bw_hwmon;
	m->hw.suspend_hwmon = &suspend_bw_hwmon;
	m->hw.resume_hwmon = &resume_bw_hwmon;
	m->hw.meas_bw_and_set_irq = &meas_bw_and_set_irq;

	ret = register_bw_hwmon(dev, &m->hw);
	if (ret) {