summaryrefslogtreecommitdiffstats
path: root/drivers/clk
diff options
context:
space:
mode:
authorStephen Boyd <sboyd@kernel.org>2019-07-31 12:35:15 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-10-07 18:56:45 +0200
commitefa0fe4cde0548bc702efd95572ff1b3e96fedc6 (patch)
treea0fbe906333346840feb55c52e3e3eaf76be6c0d /drivers/clk
parent89dc59fb267d6d3a0d47fe8480982b451e06831f (diff)
downloadlinux-stable-efa0fe4cde0548bc702efd95572ff1b3e96fedc6.tar.gz
linux-stable-efa0fe4cde0548bc702efd95572ff1b3e96fedc6.tar.bz2
linux-stable-efa0fe4cde0548bc702efd95572ff1b3e96fedc6.zip
clk: sprd: Don't reference clk_init_data after registration
[ Upstream commit f6c90df8e7e33c3dc33d4d7471bc42c232b0510e ] A future patch is going to change semantics of clk_register() so that clk_hw::init is guaranteed to be NULL after a clk is registered. Avoid referencing this member here so that we don't run into NULL pointer exceptions. Cc: Chunyan Zhang <zhang.chunyan@linaro.org> Cc: Baolin Wang <baolin.wang@linaro.org> Signed-off-by: Stephen Boyd <sboyd@kernel.org> Link: https://lkml.kernel.org/r/20190731193517.237136-8-sboyd@kernel.org Acked-by: Baolin Wang <baolin.wang@linaro.org> Acked-by: Chunyan Zhang <zhang.chunyan@linaro.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r--drivers/clk/sprd/common.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/clk/sprd/common.c b/drivers/clk/sprd/common.c
index e038b0447206..8bdab1c3013b 100644
--- a/drivers/clk/sprd/common.c
+++ b/drivers/clk/sprd/common.c
@@ -71,16 +71,17 @@ int sprd_clk_probe(struct device *dev, struct clk_hw_onecell_data *clkhw)
struct clk_hw *hw;
for (i = 0; i < clkhw->num; i++) {
+ const char *name;
hw = clkhw->hws[i];
-
if (!hw)
continue;
+ name = hw->init->name;
ret = devm_clk_hw_register(dev, hw);
if (ret) {
dev_err(dev, "Couldn't register clock %d - %s\n",
- i, hw->init->name);
+ i, name);
return ret;
}
}