diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2016-03-01 22:00:02 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-03-03 04:47:19 +0300 |
commit | f6da46a3074722feb9b4069cf032b924c7251860 (patch) | |
tree | a2c57ec8c4aabccf3aeaa6f5a3229f4421272d99 /drivers/clk/tegra/clk-audio-sync.c | |
parent | afb4bdc9d8987eb570ef0e9e608459d9fc016de5 (diff) | |
download | linux-f6da46a3074722feb9b4069cf032b924c7251860.tar.xz |
clk: tegra: Remove CLK_IS_ROOT
This flag is a no-op now. Remove usage of the flag.
Acked-by: Rhyland Klein <rklein@nvidia.com>
Acked-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/tegra/clk-audio-sync.c')
-rw-r--r-- | drivers/clk/tegra/clk-audio-sync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/tegra/clk-audio-sync.c b/drivers/clk/tegra/clk-audio-sync.c index c0f7843e80e6..92d04ce2dee6 100644 --- a/drivers/clk/tegra/clk-audio-sync.c +++ b/drivers/clk/tegra/clk-audio-sync.c @@ -72,7 +72,7 @@ struct clk *tegra_clk_register_sync_source(const char *name, init.ops = &tegra_clk_sync_source_ops; init.name = name; - init.flags = CLK_IS_ROOT; + init.flags = 0; init.parent_names = NULL; init.num_parents = 0; |