diff options
author | Ranjani Vaidyanathan-RA5478 <Ranjani.Vaidyanathan@freescale.com> | 2009-12-10 13:51:46 -0600 |
---|---|---|
committer | Alejandro Gonzalez <alex.gonzalez@digi.com> | 2010-02-12 17:19:45 +0100 |
commit | 6bf49f588ac3cfd943bd4bf305bc4949240dfb98 (patch) | |
tree | 9b6cdc0d8b5b94e85d13a9591ef08459c1acd083 /arch/arm/mach-mx51 | |
parent | 86742ff6307bb9f465970a771d950aaf001459be (diff) |
ENGR00119199: ipu: add clock nodes for pixel clocks
Added clock nodes for pixel clocks so that their rates and
parents can be easily tracked.
Signed-off-by: Rob Herring <r.herring@freescale.com>
Diffstat (limited to 'arch/arm/mach-mx51')
-rw-r--r-- | arch/arm/mach-mx51/clock.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-mx51/clock.c b/arch/arm/mach-mx51/clock.c index 67f3fbf239e7..3600b649cdba 100644 --- a/arch/arm/mach-mx51/clock.c +++ b/arch/arm/mach-mx51/clock.c @@ -1338,7 +1338,7 @@ static struct clk ipu_clk[] = { .enable = _clk_ipu_enable, .disable = _clk_ipu_disable, .set_parent = _clk_ipu_set_parent, - .flags = CPU_FREQ_TRIG_UPDATE | AHB_MED_SET_POINT, + .flags = CPU_FREQ_TRIG_UPDATE | AHB_MED_SET_POINT | RATE_PROPAGATES, }, { .name = "ipu_sec_clk", @@ -1433,6 +1433,7 @@ static struct clk ipu_di_clk[] = { .set_rate = _clk_ipu_di_set_rate, .enable = _clk_enable, .disable = _clk_disable, + .flags = RATE_PROPAGATES, }, { .name = "ipu_di1_clk", @@ -1446,6 +1447,7 @@ static struct clk ipu_di_clk[] = { .set_rate = _clk_ipu_di_set_rate, .enable = _clk_enable, .disable = _clk_disable, + .flags = RATE_PROPAGATES, }, }; |