]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
clk: davinci: psc: drop unused reset lookup
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 22 Oct 2025 13:51:31 +0000 (15:51 +0200)
committerPhilipp Zabel <p.zabel@pengutronix.de>
Tue, 18 Nov 2025 16:52:54 +0000 (17:52 +0100)
We no longer support any non-DT DaVinci boards so there are no more
users of legacy reset lookup.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Acked-by: Stephen Boyd <sboyd@kernel.org>
Acked-by: David Lechner <david@lechnology.com>
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
drivers/clk/davinci/psc-da850.c

index 5a18bca464cdaf3a0f3573cf9d70b79ca591cf28..94081ab1e68872d978e4cb162d8f9101de656d3a 100644 (file)
@@ -6,7 +6,6 @@
  */
 
 #include <linux/clk-provider.h>
-#include <linux/reset-controller.h>
 #include <linux/clk.h>
 #include <linux/clkdev.h>
 #include <linux/init.h>
@@ -66,14 +65,8 @@ LPSC_CLKDEV3(ecap_clkdev,    "fck",  "ecap.0",
                                "fck",  "ecap.1",
                                "fck",  "ecap.2");
 
-static struct reset_control_lookup da850_psc0_reset_lookup_table[] = {
-       RESET_LOOKUP("da850-psc0", 15, "davinci-rproc.0", NULL),
-};
-
 static int da850_psc0_init(struct device *dev, void __iomem *base)
 {
-       reset_controller_add_lookup(da850_psc0_reset_lookup_table,
-                                   ARRAY_SIZE(da850_psc0_reset_lookup_table));
        return davinci_psc_register_clocks(dev, da850_psc0_info, 16, base);
 }