diff options
Diffstat (limited to 'arch/arm/mach-pnx4008')
-rw-r--r-- | arch/arm/mach-pnx4008/clock.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm/mach-pnx4008/clock.c b/arch/arm/mach-pnx4008/clock.c index 5a1515210969..692625cd2001 100644 --- a/arch/arm/mach-pnx4008/clock.c +++ b/arch/arm/mach-pnx4008/clock.c | |||
@@ -639,30 +639,30 @@ 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, |
642 | .round_rate = &on_off_round_rate, | ||
643 | .set_rate = &on_off_set_rate, | ||
644 | .enable_shift = 0, | 642 | .enable_shift = 0, |
645 | .enable_reg = I2CCLKCTRL_REG, | 643 | .enable_reg = I2CCLKCTRL_REG, |
644 | .enable = clk_reg_enable, | ||
645 | .disable = clk_reg_disable, | ||
646 | }; | 646 | }; |
647 | 647 | ||
648 | static struct clk i2c1_ck = { | 648 | static struct clk i2c1_ck = { |
649 | .name = "i2c1_ck", | 649 | .name = "i2c1_ck", |
650 | .parent = &per_ck, | 650 | .parent = &per_ck, |
651 | .flags = NEEDS_INITIALIZATION, | 651 | .flags = NEEDS_INITIALIZATION, |
652 | .round_rate = &on_off_round_rate, | ||
653 | .set_rate = &on_off_set_rate, | ||
654 | .enable_shift = 1, | 652 | .enable_shift = 1, |
655 | .enable_reg = I2CCLKCTRL_REG, | 653 | .enable_reg = I2CCLKCTRL_REG, |
654 | .enable = clk_reg_enable, | ||
655 | .disable = clk_reg_disable, | ||
656 | }; | 656 | }; |
657 | 657 | ||
658 | static struct clk i2c2_ck = { | 658 | static struct clk i2c2_ck = { |
659 | .name = "i2c2_ck", | 659 | .name = "i2c2_ck", |
660 | .parent = &per_ck, | 660 | .parent = &per_ck, |
661 | .flags = NEEDS_INITIALIZATION, | 661 | .flags = NEEDS_INITIALIZATION, |
662 | .round_rate = &on_off_round_rate, | ||
663 | .set_rate = &on_off_set_rate, | ||
664 | .enable_shift = 2, | 662 | .enable_shift = 2, |
665 | .enable_reg = USB_OTG_CLKCTRL_REG, | 663 | .enable_reg = USB_OTG_CLKCTRL_REG, |
664 | .enable = clk_reg_enable, | ||
665 | .disable = clk_reg_disable, | ||
666 | }; | 666 | }; |
667 | 667 | ||
668 | static struct clk spi0_ck = { | 668 | static struct clk spi0_ck = { |