diff options
author | Jordan Crouse <jcrouse@codeaurora.org> | 2018-08-06 11:33:21 -0600 |
---|---|---|
committer | Rob Clark <robdclark@gmail.com> | 2018-08-10 18:49:18 -0400 |
commit | 8e54eea503caec53d39e67407ffa785690f38ba4 (patch) | |
tree | 1d31e5d2864a3ce7cf23986b558dd4f4300ce0d0 /drivers/gpu/drm/msm/msm_gpu.h | |
parent | 77a209cd7153cd758aa1b1417fb10017bead9454 (diff) | |
download | linux-8e54eea503caec53d39e67407ffa785690f38ba4.tar.gz linux-8e54eea503caec53d39e67407ffa785690f38ba4.tar.bz2 linux-8e54eea503caec53d39e67407ffa785690f38ba4.zip |
drm/msm: Add a helper function to parse clock names
Add a helper function to parse the clock names and set up
the bulk data so we can take advantage of the bulk clock
functions instead of rolling our own. This is added
as a helper function so the upcoming a6xx GMU code can
also take advantage of it.
Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org>
Signed-off-by: Rob Clark <robdclark@gmail.com>
Diffstat (limited to 'drivers/gpu/drm/msm/msm_gpu.h')
-rw-r--r-- | drivers/gpu/drm/msm/msm_gpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/msm/msm_gpu.h b/drivers/gpu/drm/msm/msm_gpu.h index 1c6105bc55c7..9122ee6e55e4 100644 --- a/drivers/gpu/drm/msm/msm_gpu.h +++ b/drivers/gpu/drm/msm/msm_gpu.h @@ -112,7 +112,7 @@ struct msm_gpu { /* Power Control: */ struct regulator *gpu_reg, *gpu_cx; - struct clk **grp_clks; + struct clk_bulk_data *grp_clks; int nr_clocks; struct clk *ebi1_clk, *core_clk, *rbbmtimer_clk; uint32_t fast_rate; |