PM / clk: Fix clock error check in __pm_clk_add()
authorGeert Uytterhoeven <geert+renesas@glider.be>
Fri, 8 May 2015 08:47:43 +0000 (10:47 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 19 May 2015 13:13:19 +0000 (15:13 +0200)
commit3fc3a0be0dab352e065d1dad7d3f81953ed0d4bc
tree7f48755fd8c37ea85da76eb1e7c5403436eea3d4
parentd2c4b43d8848afaf968ed1f3cea0c99296ff5ff3
PM / clk: Fix clock error check in __pm_clk_add()

In the final iteration of commit 245bd6f6af8a62a2 ("PM / clock_ops: Add
pm_clk_add_clk()"), a refcount increment was added by Grygorii Strashko.
However, the accompanying IS_ERR() check operates on the wrong clock
pointer, which is always zero at this point, i.e. not an error.
This may lead to a NULL pointer dereference later, when __clk_get()
tries to dereference an error pointer.

Check the passed clock pointer instead to fix this.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Fixes: 245bd6f6af8a62a2 ("PM / clock_ops: Add pm_clk_add_clk()")
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/base/power/clock_ops.c