diff --git a/drivers/amlogic/media/osd/osd_hw.c b/drivers/amlogic/media/osd/osd_hw.c index 16cb31320b3b..b4e3672ebb4a 100644 --- a/drivers/amlogic/media/osd/osd_hw.c +++ b/drivers/amlogic/media/osd/osd_hw.c @@ -7149,7 +7149,7 @@ static void osd_set_freescale(u32 index, * in case of higher resolution over 2560x1080. * Other cases, native vertical size is used. */ - if ((dst_height > 1080) && (dst_width >= 2560)) + if ((dst_height >= 1080) && (dst_width >= 2560)) osd_hw.free_scale[index].v_enable = 1; else osd_hw.free_scale[index].v_enable = 0;