From e6684b5e75875bb00bf0e7d9a2b40947457e9e30 Mon Sep 17 00:00:00 2001 From: Huang zhibao Date: Wed, 14 Oct 2020 17:25:48 +0800 Subject: [PATCH] input: remotectl: fix PWM_CH1_INT_ENABLE definition error Signed-off-by: Huang zhibao Change-Id: Ib27d5ee7d25004f28978bfd797fa92f045ffb54f --- drivers/input/remotectl/rockchip_pwm_remotectl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/input/remotectl/rockchip_pwm_remotectl.h b/drivers/input/remotectl/rockchip_pwm_remotectl.h index ed430d200606..577a49226040 100644 --- a/drivers/input/remotectl/rockchip_pwm_remotectl.h +++ b/drivers/input/remotectl/rockchip_pwm_remotectl.h @@ -54,7 +54,7 @@ #define PWM_CH0_INT_ENABLE (1 << 0) #define PWM_CH0_INT_DISABLE (0 << 0) -#define PWM_CH1_INT_ENABLE (1 << 0) +#define PWM_CH1_INT_ENABLE (1 << 1) #define PWM_CH1_INT_DISABLE (0 << 1) #define PWM_CH2_INT_ENABLE (1 << 2)