Skip to content

Commit

Permalink
[media] v4l: vsp1: Fix typo in VI6_DISP_IRQ_STA_DST register bit name
Browse files Browse the repository at this point in the history
Rename the VI6_DISP_IRQ_STA_DSE register bit to VI6_DISP_IRQ_STA_DST to
fix a typo and match the datasheet.

Signed-off-by: Laurent Pinchart <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
  • Loading branch information
Laurent Pinchart authored and mchehab committed Feb 19, 2016
1 parent ba3a5c6 commit 5dc1e5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/platform/vsp1/vsp1_regs.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
#define VI6_DISP_IRQ_ENB_LNEE(n) (1 << (n))

#define VI6_DISP_IRQ_STA 0x007c
#define VI6_DISP_IRQ_STA_DSE (1 << 8)
#define VI6_DISP_IRQ_STA_DST (1 << 8)
#define VI6_DISP_IRQ_STA_MAE (1 << 5)
#define VI6_DISP_IRQ_STA_LNE(n) (1 << (n))

Expand Down

0 comments on commit 5dc1e5f

Please sign in to comment.