Commit 2bc5febd authored by Marek Szyprowski's avatar Marek Szyprowski Committed by Krzysztof Kozlowski

clk: samsung: Revert "clk: samsung: exynos-clkout: Use of_device_get_match_data()"

of_device_get_match_data() function should not be used on the device
other than the one matched to the given driver, because it always returns
the match_data of the matched driver. In case of exynos-clkout driver,
the code matched the OF IDs on the PARENT device, so replacing it with
of_device_get_match_data() broke the driver.

This reverts commit 777aaf3d.
Signed-off-by: default avatarMarek Szyprowski <m.szyprowski@samsung.com>
Fixes: 777aaf3d ("clk: samsung: exynos-clkout: Use of_device_get_match_data()")
Reviewed-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20221108213718.32076-1-m.szyprowski@samsung.comSigned-off-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
parent 4854e8b0
...@@ -81,17 +81,19 @@ MODULE_DEVICE_TABLE(of, exynos_clkout_ids); ...@@ -81,17 +81,19 @@ MODULE_DEVICE_TABLE(of, exynos_clkout_ids);
static int exynos_clkout_match_parent_dev(struct device *dev, u32 *mux_mask) static int exynos_clkout_match_parent_dev(struct device *dev, u32 *mux_mask)
{ {
const struct exynos_clkout_variant *variant; const struct exynos_clkout_variant *variant;
const struct of_device_id *match;
if (!dev->parent) { if (!dev->parent) {
dev_err(dev, "not instantiated from MFD\n"); dev_err(dev, "not instantiated from MFD\n");
return -EINVAL; return -EINVAL;
} }
variant = of_device_get_match_data(dev->parent); match = of_match_device(exynos_clkout_ids, dev->parent);
if (!variant) { if (!match) {
dev_err(dev, "cannot match parent device\n"); dev_err(dev, "cannot match parent device\n");
return -EINVAL; return -EINVAL;
} }
variant = match->data;
*mux_mask = variant->mux_mask; *mux_mask = variant->mux_mask;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment