drm/msm/dpu: add DSPP blocks teardown
Add missing calls to dpu_hw_dspp_destroy() to free resources allocated
for DSPP hardware blocks.
Fixes: e47616df00
("drm/msm/dpu: add support for color processing blocks in dpu driver")
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: Stephen Boyd <swboyd@chromium.org>
Reviewed-by: Abhinav Kumar <quic_abhinavk@quicinc.com>
Link: https://lore.kernel.org/r/20220121210618.3482550-3-dmitry.baryshkov@linaro.org
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
This commit is contained in:
parent
ee216bd1aa
commit
d5c5e78f21
@ -35,6 +35,14 @@ int dpu_rm_destroy(struct dpu_rm *rm)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(rm->dspp_blks); i++) {
|
||||
struct dpu_hw_dspp *hw;
|
||||
|
||||
if (rm->dspp_blks[i]) {
|
||||
hw = to_dpu_hw_dspp(rm->dspp_blks[i]);
|
||||
dpu_hw_dspp_destroy(hw);
|
||||
}
|
||||
}
|
||||
for (i = 0; i < ARRAY_SIZE(rm->pingpong_blks); i++) {
|
||||
struct dpu_hw_pingpong *hw;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user