Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

clk: davinci: psc: drop unused reset lookup

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>

authored by

Bartosz Golaszewski and committed by
Philipp Zabel
a86aaf2b 819ac6b0

-7
-7
drivers/clk/davinci/psc-da850.c
··· 6 6 */ 7 7 8 8 #include <linux/clk-provider.h> 9 - #include <linux/reset-controller.h> 10 9 #include <linux/clk.h> 11 10 #include <linux/clkdev.h> 12 11 #include <linux/init.h> ··· 65 66 "fck", "ecap.1", 66 67 "fck", "ecap.2"); 67 68 68 - static struct reset_control_lookup da850_psc0_reset_lookup_table[] = { 69 - RESET_LOOKUP("da850-psc0", 15, "davinci-rproc.0", NULL), 70 - }; 71 - 72 69 static int da850_psc0_init(struct device *dev, void __iomem *base) 73 70 { 74 - reset_controller_add_lookup(da850_psc0_reset_lookup_table, 75 - ARRAY_SIZE(da850_psc0_reset_lookup_table)); 76 71 return davinci_psc_register_clocks(dev, da850_psc0_info, 16, base); 77 72 } 78 73