diff options
author | Abel Vesa <abel.vesa@nxp.com> | 2019-03-21 15:25:54 +0000 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2019-03-26 16:49:49 +0800 |
commit | 48a15bb42df85d30e13281642a12fd27221668fa (patch) | |
tree | ddfd49a2bc46f22b2e734af239342fc1ed0ee12b /drivers/clk/imx | |
parent | 9e98c678c2d6ae3a17cb2de55d17f69dddaa231b (diff) | |
download | linux-48a15bb42df85d30e13281642a12fd27221668fa.tar.bz2 |
clk: imx: Remove unused imx_get_clk_hw_fixed
This is never used and the imx_clk_hw_fixed does the same thing.
Signed-off-by: Abel Vesa <abel.vesa@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'drivers/clk/imx')
-rw-r--r-- | drivers/clk/imx/clk.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/clk/imx/clk.h b/drivers/clk/imx/clk.h index 5748ec8673e4..edc12d68a5e5 100644 --- a/drivers/clk/imx/clk.h +++ b/drivers/clk/imx/clk.h @@ -138,11 +138,6 @@ static inline struct clk_hw *imx_clk_hw_fixed(const char *name, int rate) return clk_hw_register_fixed_rate(NULL, name, NULL, 0, rate); } -static inline struct clk_hw *imx_get_clk_hw_fixed(const char *name, int rate) -{ - return clk_hw_register_fixed_rate(NULL, name, NULL, 0, rate); -} - static inline struct clk *imx_clk_mux_ldb(const char *name, void __iomem *reg, u8 shift, u8 width, const char * const *parents, int num_parents) |