mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 06:50:52 +07:00
[media] rcar_vin: Fix interrupt enable in progressive
The progressive input is captured by the field interrupt. Therefore the end of frame interrupt is unnecessary. Signed-off-by: Koji Matsuoka <koji.matsuoka.xm@renesas.com> Signed-off-by: Yoshihiro Kaneko <ykaneko0929@gmail.com> Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
609f33c928
commit
e272d95f8c
@ -678,7 +678,7 @@ static int rcar_vin_setup(struct rcar_vin_priv *priv)
|
||||
vnmc |= VNMC_BPS;
|
||||
|
||||
/* progressive or interlaced mode */
|
||||
interrupts = progressive ? VNIE_FIE | VNIE_EFE : VNIE_EFE;
|
||||
interrupts = progressive ? VNIE_FIE : VNIE_EFE;
|
||||
|
||||
/* ack interrupts */
|
||||
iowrite32(interrupts, priv->base + VNINTS_REG);
|
||||
|
Loading…
Reference in New Issue
Block a user