summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaravana Kannan <skannan@codeaurora.org>2015-06-11 15:52:51 -0700
committerDavid Keitel <dkeitel@codeaurora.org>2016-03-23 20:04:25 -0700
commit1352d7b50dfcfbf5ae9a63c0d7cd5761b9a203b7 (patch)
treee55f558c22d3dced93f3f222f801affb0d08cf92
parentdecfc3fe4a1ca2fefd922be94be00447994bdb3f (diff)
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>
-rw-r--r--drivers/devfreq/bimc-bwmon.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/devfreq/bimc-bwmon.c b/drivers/devfreq/bimc-bwmon.c
index 17e76405fa95..3a85ae90b846 100644
--- a/drivers/devfreq/bimc-bwmon.c
+++ b/drivers/devfreq/bimc-bwmon.c
@@ -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) {