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: Saravana Kannan <skannan@codeaurora.org>
This commit is contained in:
Saravana Kannan 2015-06-11 15:52:51 -07:00 committed by David Keitel
parent decfc3fe4a
commit 1352d7b50d

View file

@ -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) {