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

sh: sh5 sh_clk_ops rename

Convert sh5 to use sh_clk_ops.

Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>

authored by

Magnus Damm and committed by
Rafael J. Wysocki
2e679b0b 33cb61a4

+6 -6
+6 -6
arch/sh/kernel/cpu/sh5/clock-sh5.c
··· 28 28 clk->rate *= ifc_table[idx]; 29 29 } 30 30 31 - static struct clk_ops sh5_master_clk_ops = { 31 + static struct sh_clk_ops sh5_master_clk_ops = { 32 32 .init = master_clk_init, 33 33 }; 34 34 ··· 38 38 return clk->parent->rate / ifc_table[idx]; 39 39 } 40 40 41 - static struct clk_ops sh5_module_clk_ops = { 41 + static struct sh_clk_ops sh5_module_clk_ops = { 42 42 .recalc = module_clk_recalc, 43 43 }; 44 44 ··· 48 48 return clk->parent->rate / ifc_table[idx]; 49 49 } 50 50 51 - static struct clk_ops sh5_bus_clk_ops = { 51 + static struct sh_clk_ops sh5_bus_clk_ops = { 52 52 .recalc = bus_clk_recalc, 53 53 }; 54 54 ··· 58 58 return clk->parent->rate / ifc_table[idx]; 59 59 } 60 60 61 - static struct clk_ops sh5_cpu_clk_ops = { 61 + static struct sh_clk_ops sh5_cpu_clk_ops = { 62 62 .recalc = cpu_clk_recalc, 63 63 }; 64 64 65 - static struct clk_ops *sh5_clk_ops[] = { 65 + static struct sh_clk_ops *sh5_clk_ops[] = { 66 66 &sh5_master_clk_ops, 67 67 &sh5_module_clk_ops, 68 68 &sh5_bus_clk_ops, 69 69 &sh5_cpu_clk_ops, 70 70 }; 71 71 72 - void __init arch_init_clk_ops(struct clk_ops **ops, int idx) 72 + void __init arch_init_clk_ops(struct sh_clk_ops **ops, int idx) 73 73 { 74 74 cprc_base = (unsigned long)ioremap_nocache(CPRC_BASE, 1024); 75 75 BUG_ON(!cprc_base);