mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 04:30:56 +07:00
ARM: S3C64XX: Tidy register and disable clock usage
This patch changes the clock registration code to use the s3c_register_clocks() followed by s3c_disable_clocks() instead of the loops it was using. Cc: Ben Dooks <ben-linux@fluff.org> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
parent
387c31c7e5
commit
cdb216de6e
@ -127,7 +127,7 @@ int s3c64xx_sclk_ctrl(struct clk *clk, int enable)
|
|||||||
return s3c64xx_gate(S3C_SCLK_GATE, clk, enable);
|
return s3c64xx_gate(S3C_SCLK_GATE, clk, enable);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct clk init_clocks_disable[] = {
|
static struct clk init_clocks_off[] = {
|
||||||
{
|
{
|
||||||
.name = "nand",
|
.name = "nand",
|
||||||
.id = -1,
|
.id = -1,
|
||||||
@ -834,10 +834,6 @@ static struct clk *clks[] __initdata = {
|
|||||||
void __init s3c64xx_register_clocks(unsigned long xtal,
|
void __init s3c64xx_register_clocks(unsigned long xtal,
|
||||||
unsigned armclk_divlimit)
|
unsigned armclk_divlimit)
|
||||||
{
|
{
|
||||||
struct clk *clkp;
|
|
||||||
int ret;
|
|
||||||
int ptr;
|
|
||||||
|
|
||||||
armclk_mask = armclk_divlimit;
|
armclk_mask = armclk_divlimit;
|
||||||
|
|
||||||
s3c24xx_register_baseclocks(xtal);
|
s3c24xx_register_baseclocks(xtal);
|
||||||
@ -845,17 +841,8 @@ void __init s3c64xx_register_clocks(unsigned long xtal,
|
|||||||
|
|
||||||
s3c_register_clocks(init_clocks, ARRAY_SIZE(init_clocks));
|
s3c_register_clocks(init_clocks, ARRAY_SIZE(init_clocks));
|
||||||
|
|
||||||
clkp = init_clocks_disable;
|
s3c_register_clocks(init_clocks_off, ARRAY_SIZE(init_clocks_off));
|
||||||
for (ptr = 0; ptr < ARRAY_SIZE(init_clocks_disable); ptr++, clkp++) {
|
s3c_disable_clocks(init_clocks_off, ARRAY_SIZE(init_clocks_off));
|
||||||
|
|
||||||
ret = s3c24xx_register_clock(clkp);
|
|
||||||
if (ret < 0) {
|
|
||||||
printk(KERN_ERR "Failed to register clock %s (%d)\n",
|
|
||||||
clkp->name, ret);
|
|
||||||
}
|
|
||||||
|
|
||||||
(clkp->enable)(clkp, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
s3c24xx_register_clocks(clks1, ARRAY_SIZE(clks1));
|
s3c24xx_register_clocks(clks1, ARRAY_SIZE(clks1));
|
||||||
s3c_register_clksrc(clksrcs, ARRAY_SIZE(clksrcs));
|
s3c_register_clksrc(clksrcs, ARRAY_SIZE(clksrcs));
|
||||||
|
Loading…
Reference in New Issue
Block a user