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

clk: ti: dra7: constify clk_hw_omap_ops structure

The clk_hw_omap_ops structures are never modified, so declare this one as
const, like the others.

Done with the help of Coccinelle.

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>

authored by

Julia Lawall and committed by
Stephen Boyd
d687767a f49afecc

+1 -1
+1 -1
drivers/clk/ti/apll.c
··· 323 323 omap2_apll_set_autoidle(clk, OMAP2_APLL_AUTOIDLE_DISABLE); 324 324 } 325 325 326 - static struct clk_hw_omap_ops omap2_apll_hwops = { 326 + static const struct clk_hw_omap_ops omap2_apll_hwops = { 327 327 .allow_idle = &omap2_apll_allow_idle, 328 328 .deny_idle = &omap2_apll_deny_idle, 329 329 };