Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

media: vsp1: tidyup VI6_HGT_LBn_H() macro

The address of VSP2_VI6_HGT_LBx_H are
VSP2_VI6_HGT_LB0_H : 0x3428
VSP2_VI6_HGT_LB1_H : 0x3430
VSP2_VI6_HGT_LB2_H : 0x3438
VSP2_VI6_HGT_LB3_H : 0x3440

Thus, VI6_HGT_LBn_H() macro should start from 0x3420 instead of 0x3430.
This patch fixes it.

Fixes: 26e0ca22c3b8 ("[media] v4l: Renesas R-Car VSP1 driver")

Reported-by: Koji Matsuoka <koji.matsuoka.xm@renesas.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>

authored by

Kuninori Morimoto and committed by
Mauro Carvalho Chehab
bd59f412 7cbeb2e1

+1 -1
+1 -1
drivers/media/platform/vsp1/vsp1_regs.h
··· 706 706 #define VI6_HGT_HUE_AREA_LOWER_SHIFT 16 707 707 #define VI6_HGT_HUE_AREA_UPPER_SHIFT 0 708 708 #define VI6_HGT_LB_TH 0x3424 709 - #define VI6_HGT_LBn_H(n) (0x3438 + (n) * 8) 709 + #define VI6_HGT_LBn_H(n) (0x3428 + (n) * 8) 710 710 #define VI6_HGT_LBn_V(n) (0x342c + (n) * 8) 711 711 #define VI6_HGT_HISTO(m, n) (0x3450 + (m) * 128 + (n) * 4) 712 712 #define VI6_HGT_MAXMIN 0x3750