]> Git Repo - linux.git/commitdiff
thermal: clock_cooling: Fix missing mutex_init()
authorWei Yongjun <[email protected]>
Mon, 25 Jul 2016 07:01:19 +0000 (07:01 +0000)
committerZhang Rui <[email protected]>
Mon, 8 Aug 2016 02:57:39 +0000 (10:57 +0800)
The driver allocates the mutex but not initialize it.
Use mutex_init() on it to initialize it correctly.

This is detected by Coccinelle semantic patch.

Signed-off-by: Wei Yongjun <[email protected]>
Signed-off-by: Zhang Rui <[email protected]>
drivers/thermal/clock_cooling.c

index 1b4ff0f4c7168f578253d248507cb57fc02245c2..ed5dd0e8865746fe928f08459218779b97227103 100644 (file)
@@ -426,6 +426,7 @@ clock_cooling_register(struct device *dev, const char *clock_name)
        if (!ccdev)
                return ERR_PTR(-ENOMEM);
 
+       mutex_init(&ccdev->lock);
        ccdev->dev = dev;
        ccdev->clk = devm_clk_get(dev, clock_name);
        if (IS_ERR(ccdev->clk))
This page took 0.056951 seconds and 4 git commands to generate.