]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
PM / clock_ops: fix up clk prepare/unprepare count
authorBen Dooks <ben.dooks@codethink.co.uk>
Tue, 14 Jan 2014 12:23:40 +0000 (12:23 +0000)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 15 Jan 2014 00:50:50 +0000 (01:50 +0100)
commit8a6720ec2020f01756154d9c272f88a6af76fb81
tree45064596fd904fe22ce57946c3cb2a15a75fd54a
parent7e22e91102c6b9df7c4ae2168910e19d2bb14cd6
PM / clock_ops: fix up clk prepare/unprepare count

The drivers/base/power/clock_ops.c file is causing warnings from
the clock driver (as shown below) due to failing to do a clk_prepare()
call before enabling a clock. It also fails to check the balance of
prepare/unprepare as __pm_clk_remove() do clk_disable_unprepare() call.

This bug has probably been in since commit b2476490e ("clk: introduce
the common clock framework") as the warning was part of the original
commit. It is strange that it has not been noticed (although this has
also been coupled with a failure for certain SH builds to not build the
necessary glue to use this method of controlling the clocks).

In summary, this is probably needed in several stable branches but need
advice on which ones.

On the Renesas Lager board, this causes numerous warnings of the following
and even worse the clock system will not enable clocks, causing drivers
that are in development to fail to work:

WARNING: CPU: 0 PID: 1 at drivers/clk/clk.c:883 __clk_enable+0x2c/0xa0()

Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
Reviewed-by: Ian Molton <ian.molton@codethink.co.uk>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/base/power/clock_ops.c