video: rockchip: rga3: fix typo in win1_param check during RGA3 rotation

Fixes: 0b97d73d8e ("video: rockchip: rga3: fix the wrong check of resolution in RGA3 rotating")

Signed-off-by: Yu Qiaowei <cerf.yu@rock-chips.com>
Change-Id: I27fd66c5ad2aa9ea9ea4495647c6c8aae1e21264
This commit is contained in:
Yu Qiaowei
2025-03-25 19:50:15 +08:00
committed by Tao Huang
parent 9bd09ac33f
commit 455fbd6ef9

View File

@@ -1765,8 +1765,8 @@ static int rga3_scale_check(struct rga_job *job, const struct rga3_req *req)
win0_daw = req->win0.dst_act_h;
win0_dah = req->win0.dst_act_w;
win1_saw = req->win1.dst_act_w;
win1_sah = req->win1.dst_act_h;
win1_saw = req->win1.src_act_w;
win1_sah = req->win1.src_act_h;
win1_daw = req->win1.dst_act_h;
win1_dah = req->win1.dst_act_w;
} else {