diff options
author | Stephen Warren <swarren@nvidia.com> | 2013-11-05 17:33:17 -0700 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2013-12-11 16:42:48 -0700 |
commit | 6d5b988e7dc56bb97c39bdcbc006fadcd6ca371b (patch) | |
tree | 4d5b526c30909e2b6ab88a5048fdcdffa56a48e9 /drivers/clk/tegra/clk.h | |
parent | e04214683aca5cf7bbb53ee9d16373a8dbfa4259 (diff) | |
download | blackbird-op-linux-6d5b988e7dc56bb97c39bdcbc006fadcd6ca371b.tar.gz blackbird-op-linux-6d5b988e7dc56bb97c39bdcbc006fadcd6ca371b.zip |
clk: tegra: implement a reset driver
The Tegra CAR module implements both a clock and reset controller. So
far, the driver exposes the clock feature via the common clock API and
the reset feature using a custom API. This patch adds an implementation
of the common reset framework API (include/linux/reset*.h). The legacy
reset implementation will be removed once all drivers have been
converted.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Thierry Reding <treding@nvidia.com>
Acked-By: Peter De Schrijver <pdeschrijver@nvidia.com>
Diffstat (limited to 'drivers/clk/tegra/clk.h')
-rw-r--r-- | drivers/clk/tegra/clk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/tegra/clk.h b/drivers/clk/tegra/clk.h index 40fb011233c0..07c62f997371 100644 --- a/drivers/clk/tegra/clk.h +++ b/drivers/clk/tegra/clk.h @@ -597,7 +597,7 @@ void tegra_init_dup_clks(struct tegra_clk_duplicate *dup_list, struct clk *clks[], int clk_max); struct tegra_clk_periph_regs *get_reg_bank(int clkid); -struct clk **tegra_clk_init(int num, int periph_banks); +struct clk **tegra_clk_init(void __iomem *clk_base, int num, int periph_banks); struct clk **tegra_lookup_dt_id(int clk_id, struct tegra_clk *tegra_clk); |