diff options
-rw-r--r-- | sound/soc/codecs/rt5663.c | 2 | ||||
-rw-r--r-- | sound/soc/codecs/rt5663.h | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/sound/soc/codecs/rt5663.c b/sound/soc/codecs/rt5663.c index a32508d7dcfd..8569e8c7d894 100644 --- a/sound/soc/codecs/rt5663.c +++ b/sound/soc/codecs/rt5663.c | |||
@@ -3141,7 +3141,7 @@ static int rt5663_i2c_probe(struct i2c_client *i2c, | |||
3141 | regmap_update_bits(rt5663->regmap, RT5663_DIG_MISC, | 3141 | regmap_update_bits(rt5663->regmap, RT5663_DIG_MISC, |
3142 | RT5663_DIG_GATE_CTRL_MASK, RT5663_DIG_GATE_CTRL_EN); | 3142 | RT5663_DIG_GATE_CTRL_MASK, RT5663_DIG_GATE_CTRL_EN); |
3143 | regmap_update_bits(rt5663->regmap, RT5663_AUTO_1MRC_CLK, | 3143 | regmap_update_bits(rt5663->regmap, RT5663_AUTO_1MRC_CLK, |
3144 | RT5663_IRQ_POW_SAV_MASK, RT5663_IRQ_POW_SAV_EN); | 3144 | RT5663_IRQ_MANUAL_MASK, RT5663_IRQ_MANUAL_EN); |
3145 | regmap_update_bits(rt5663->regmap, RT5663_IRQ_1, | 3145 | regmap_update_bits(rt5663->regmap, RT5663_IRQ_1, |
3146 | RT5663_EN_IRQ_JD1_MASK, RT5663_EN_IRQ_JD1_EN); | 3146 | RT5663_EN_IRQ_JD1_MASK, RT5663_EN_IRQ_JD1_EN); |
3147 | regmap_update_bits(rt5663->regmap, RT5663_GPIO_1, | 3147 | regmap_update_bits(rt5663->regmap, RT5663_GPIO_1, |
diff --git a/sound/soc/codecs/rt5663.h b/sound/soc/codecs/rt5663.h index d77fae619f2f..4621812c94d8 100644 --- a/sound/soc/codecs/rt5663.h +++ b/sound/soc/codecs/rt5663.h | |||
@@ -590,6 +590,10 @@ | |||
590 | #define RT5663_IRQ_POW_SAV_JD1_SHIFT 14 | 590 | #define RT5663_IRQ_POW_SAV_JD1_SHIFT 14 |
591 | #define RT5663_IRQ_POW_SAV_JD1_DIS (0x0 << 14) | 591 | #define RT5663_IRQ_POW_SAV_JD1_DIS (0x0 << 14) |
592 | #define RT5663_IRQ_POW_SAV_JD1_EN (0x1 << 14) | 592 | #define RT5663_IRQ_POW_SAV_JD1_EN (0x1 << 14) |
593 | #define RT5663_IRQ_MANUAL_MASK (0x1 << 8) | ||
594 | #define RT5663_IRQ_MANUAL_SHIFT 8 | ||
595 | #define RT5663_IRQ_MANUAL_DIS (0x0 << 8) | ||
596 | #define RT5663_IRQ_MANUAL_EN (0x1 << 8) | ||
593 | 597 | ||
594 | /* IRQ Control 1 (0x00b6) */ | 598 | /* IRQ Control 1 (0x00b6) */ |
595 | #define RT5663_EN_CB_JD_MASK (0x1 << 3) | 599 | #define RT5663_EN_CB_JD_MASK (0x1 << 3) |