diff options
Diffstat (limited to 'arch/arm/mach-pnx4008/clock.c')
-rw-r--r-- | arch/arm/mach-pnx4008/clock.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/arch/arm/mach-pnx4008/clock.c b/arch/arm/mach-pnx4008/clock.c index 692625cd2001..9d1975fa4d9f 100644 --- a/arch/arm/mach-pnx4008/clock.c +++ b/arch/arm/mach-pnx4008/clock.c | |||
@@ -638,9 +638,10 @@ static struct clk flash_ck = { | |||
638 | static struct clk i2c0_ck = { | 638 | static struct clk i2c0_ck = { |
639 | .name = "i2c0_ck", | 639 | .name = "i2c0_ck", |
640 | .parent = &per_ck, | 640 | .parent = &per_ck, |
641 | .flags = NEEDS_INITIALIZATION, | 641 | .flags = NEEDS_INITIALIZATION | FIXED_RATE, |
642 | .enable_shift = 0, | 642 | .enable_shift = 0, |
643 | .enable_reg = I2CCLKCTRL_REG, | 643 | .enable_reg = I2CCLKCTRL_REG, |
644 | .rate = 13000000, | ||
644 | .enable = clk_reg_enable, | 645 | .enable = clk_reg_enable, |
645 | .disable = clk_reg_disable, | 646 | .disable = clk_reg_disable, |
646 | }; | 647 | }; |
@@ -648,9 +649,10 @@ static struct clk i2c0_ck = { | |||
648 | static struct clk i2c1_ck = { | 649 | static struct clk i2c1_ck = { |
649 | .name = "i2c1_ck", | 650 | .name = "i2c1_ck", |
650 | .parent = &per_ck, | 651 | .parent = &per_ck, |
651 | .flags = NEEDS_INITIALIZATION, | 652 | .flags = NEEDS_INITIALIZATION | FIXED_RATE, |
652 | .enable_shift = 1, | 653 | .enable_shift = 1, |
653 | .enable_reg = I2CCLKCTRL_REG, | 654 | .enable_reg = I2CCLKCTRL_REG, |
655 | .rate = 13000000, | ||
654 | .enable = clk_reg_enable, | 656 | .enable = clk_reg_enable, |
655 | .disable = clk_reg_disable, | 657 | .disable = clk_reg_disable, |
656 | }; | 658 | }; |
@@ -658,9 +660,10 @@ static struct clk i2c1_ck = { | |||
658 | static struct clk i2c2_ck = { | 660 | static struct clk i2c2_ck = { |
659 | .name = "i2c2_ck", | 661 | .name = "i2c2_ck", |
660 | .parent = &per_ck, | 662 | .parent = &per_ck, |
661 | .flags = NEEDS_INITIALIZATION, | 663 | .flags = NEEDS_INITIALIZATION | FIXED_RATE, |
662 | .enable_shift = 2, | 664 | .enable_shift = 2, |
663 | .enable_reg = USB_OTG_CLKCTRL_REG, | 665 | .enable_reg = USB_OTG_CLKCTRL_REG, |
666 | .rate = 13000000, | ||
664 | .enable = clk_reg_enable, | 667 | .enable = clk_reg_enable, |
665 | .disable = clk_reg_disable, | 668 | .disable = clk_reg_disable, |
666 | }; | 669 | }; |