diff mbox series

[v5,09/12] media: rcar-vin: Remove NTSC workaround

Message ID 20250606182606.3984508-10-niklas.soderlund+renesas@ragnatech.se
State New
Headers show
Series [v5,01/12] media: rcar-vin: Use correct count of remote subdevices | expand

Commit Message

Niklas Söderlund June 6, 2025, 6:26 p.m. UTC
On Gen2 where sub-devices where not exposed to user-space the filed
TB/BT ordering was controlled by a hack in the VIN driver. Before
converting it to media device model where the subdevice is exposed
remove that hack.

Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
---
* Changes since v4
- Broken out from larger patch.
---
 drivers/media/platform/renesas/rcar-vin/rcar-dma.c | 3 ---
 1 file changed, 3 deletions(-)
diff mbox series

Patch

diff --git a/drivers/media/platform/renesas/rcar-vin/rcar-dma.c b/drivers/media/platform/renesas/rcar-vin/rcar-dma.c
index 5c08ee2c9807..4fb33359bb0f 100644
--- a/drivers/media/platform/renesas/rcar-vin/rcar-dma.c
+++ b/drivers/media/platform/renesas/rcar-vin/rcar-dma.c
@@ -700,9 +700,6 @@  static int rvin_setup(struct rvin_dev *vin)
 	case V4L2_FIELD_INTERLACED:
 		/* Default to TB */
 		vnmc = VNMC_IM_FULL;
-		/* Use BT if video standard can be read and is 60 Hz format */
-		if (!vin->info->use_mc && vin->std & V4L2_STD_525_60)
-			vnmc = VNMC_IM_FULL | VNMC_FOC;
 		break;
 	case V4L2_FIELD_INTERLACED_TB:
 		vnmc = VNMC_IM_FULL;