diff options
author | Richard Zhao <richard.zhao@freescale.com> | 2011-07-07 15:42:40 +0800 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2012-07-20 13:14:18 +0800 |
commit | ba720e8f2c3ca3b90d6486fe97d8df0c82e6ec50 (patch) | |
tree | 3dfa46a64a701b295dcab0a275e5bad62fd981ca /arch | |
parent | 1eae399190b7cdec04273be02b4c1bf5e69ab102 (diff) |
ENGR00152773 imx6: clk: *_axi_clk get_rate should be NULL
Clocks that can not change rate should set get_rate to NULL.
Signed-off-by: Richard Zhao <richard.zhao@freescale.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-mx6/clock.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/arm/mach-mx6/clock.c b/arch/arm/mach-mx6/clock.c index 895dd9f3b56d..db20143d7e21 100644 --- a/arch/arm/mach-mx6/clock.c +++ b/arch/arm/mach-mx6/clock.c @@ -1257,7 +1257,6 @@ static struct clk gpu2d_axi_clk = { __INIT_CLK_DEBUG(gpu2d_axi_clk) .parent = &axi_clk, .set_parent = _clk_gpu2d_axi_set_parent, - .get_rate = _clk_axi_get_rate, }; static int _clk_gpu3d_axi_set_parent(struct clk *clk, struct clk *parent) @@ -1276,7 +1275,6 @@ static struct clk gpu3d_axi_clk = { __INIT_CLK_DEBUG(gpu3d_axi_clk) .parent = &axi_clk, .set_parent = _clk_gpu3d_axi_set_parent, - .get_rate = _clk_axi_get_rate, }; static int _clk_pcie_axi_set_parent(struct clk *clk, struct clk *parent) @@ -1295,7 +1293,6 @@ static struct clk pcie_axi_clk = { __INIT_CLK_DEBUG(pcie_axi_clk) .parent = &axi_clk, .set_parent = _clk_pcie_axi_set_parent, - .get_rate = _clk_axi_get_rate, }; static int _clk_vdo_axi_set_parent(struct clk *clk, struct clk *parent) @@ -1318,7 +1315,6 @@ static struct clk vdo_axi_clk = { .enable = _clk_enable, .disable = _clk_disable, .set_parent = _clk_vdo_axi_set_parent, - .get_rate = _clk_axi_get_rate, }; static struct clk vdoa_clk = { |