Skip to content

Commit

Permalink
v4l: xilinx: dprx: Correct the XDPRX_HPD_INTR_MASK macro bit mask value
Browse files Browse the repository at this point in the history
This patch fixes the incorrect bit mask value of XDPRX_HPD_INTR_MASK macro.

Signed-off-by: Rajesh Gugulothu <rajesh.gugulothu@amd.com>
Reviewed-by: Vishal Sagar <vishal.sagar@amd.com>
  • Loading branch information
gugulot authored and michalsimek committed Jan 25, 2023
1 parent 9dc1509 commit 4a511ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/platform/xilinx/xilinx-dprxss.c
Expand Up @@ -108,7 +108,7 @@
#define XDPRX_SOFT_AUXRST_MASK BIT(7)

#define XDPRX_HPD_INTR_REG 0x02c
#define XDPRX_HPD_INTR_MASK BIT(1)
#define XDPRX_HPD_INTR_MASK BIT(0)
#define XDPRX_HPD_PULSE_MASK GENMASK(31, 16)

#define XDPRX_INTR_CAUSE_REG 0x040
Expand Down

0 comments on commit 4a511ba

Please sign in to comment.