提交 c16bee78 编写于 作者: P Patrice Chotard 提交者: Lee Jones

mfd: stmpe: Use generic bit mask name

In order to prepare the ground to STMPE1600,
as STMPE1600's SYS_CTRL register has the same layout as
STMPE801 variant, unify STMPExxx_REG_SYS_CTRL_RESET/INT_EN/INT_HI
bit masks to more generic STMPE_SYS_CTRL_RESET/INT_EN/INT_HI
Signed-off-by: NPatrice Chotard <patrice.chotard@st.com>
Signed-off-by: NLee Jones <lee.jones@linaro.org>
上级 6936e1f8
...@@ -1110,7 +1110,7 @@ static int stmpe_chip_init(struct stmpe *stmpe) ...@@ -1110,7 +1110,7 @@ static int stmpe_chip_init(struct stmpe *stmpe)
if (stmpe->irq >= 0) { if (stmpe->irq >= 0) {
if (id == STMPE801_ID) if (id == STMPE801_ID)
icr = STMPE801_REG_SYS_CTRL_INT_EN; icr = STMPE_SYS_CTRL_INT_EN;
else else
icr = STMPE_ICR_LSB_GIM; icr = STMPE_ICR_LSB_GIM;
...@@ -1124,7 +1124,7 @@ static int stmpe_chip_init(struct stmpe *stmpe) ...@@ -1124,7 +1124,7 @@ static int stmpe_chip_init(struct stmpe *stmpe)
if (irq_trigger == IRQF_TRIGGER_RISING || if (irq_trigger == IRQF_TRIGGER_RISING ||
irq_trigger == IRQF_TRIGGER_HIGH) { irq_trigger == IRQF_TRIGGER_HIGH) {
if (id == STMPE801_ID) if (id == STMPE801_ID)
icr |= STMPE801_REG_SYS_CTRL_INT_HI; icr |= STMPE_SYS_CTRL_INT_HI;
else else
icr |= STMPE_ICR_LSB_HIGH; icr |= STMPE_ICR_LSB_HIGH;
} }
......
...@@ -105,6 +105,8 @@ int stmpe_remove(struct stmpe *stmpe); ...@@ -105,6 +105,8 @@ int stmpe_remove(struct stmpe *stmpe);
#define STMPE_ICR_LSB_GIM (1 << 0) #define STMPE_ICR_LSB_GIM (1 << 0)
#define STMPE_SYS_CTRL_RESET (1 << 7) #define STMPE_SYS_CTRL_RESET (1 << 7)
#define STMPE_SYS_CTRL_INT_EN (1 << 2)
#define STMPE_SYS_CTRL_INT_HI (1 << 0)
/* /*
* STMPE801 * STMPE801
...@@ -121,10 +123,6 @@ int stmpe_remove(struct stmpe *stmpe); ...@@ -121,10 +123,6 @@ int stmpe_remove(struct stmpe *stmpe);
#define STMPE801_REG_GPIO_SET_PIN 0x11 #define STMPE801_REG_GPIO_SET_PIN 0x11
#define STMPE801_REG_GPIO_DIR 0x12 #define STMPE801_REG_GPIO_DIR 0x12
#define STMPE801_REG_SYS_CTRL_RESET (1 << 7)
#define STMPE801_REG_SYS_CTRL_INT_EN (1 << 2)
#define STMPE801_REG_SYS_CTRL_INT_HI (1 << 0)
/* /*
* STMPE811 * STMPE811
*/ */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册