We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfe7bcd commit 3aab264Copy full SHA for 3aab264
drivers/interconnect/samsung/exynos.c
@@ -149,6 +149,9 @@ static int exynos_generic_icc_probe(struct platform_device *pdev)
149
&priv->bus_clk_ratio))
150
priv->bus_clk_ratio = EXYNOS_ICC_DEFAULT_BUS_CLK_RATIO;
151
152
+ icc_node->data = priv;
153
+ icc_node_add(icc_node, provider);
154
+
155
/*
156
* Register a PM QoS request for the parent (devfreq) device.
157
*/
@@ -157,9 +160,6 @@ static int exynos_generic_icc_probe(struct platform_device *pdev)
160
if (ret < 0)
158
161
goto err_node_del;
159
162
- icc_node->data = priv;
- icc_node_add(icc_node, provider);
-
163
icc_parent_node = exynos_icc_get_parent(bus_dev->of_node);
164
if (IS_ERR(icc_parent_node)) {
165
ret = PTR_ERR(icc_parent_node);
0 commit comments