drm/msm/dpu: add DSPP blocks teardown
[ Upstream commit d5c5e78f217172e87d8fb2c3418dd8b58b4adfcb ]
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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
413c62697b
commit
7b52fb813c
@@ -34,6 +34,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;
|
||||
|
||||
|
Reference in New Issue
Block a user