Skip to content

Commit

Permalink
ASoC: cs35l41: Fix GPIO2 configuration
Browse files Browse the repository at this point in the history
[ Upstream commit 03a7895 ]

Fix GPIO2 polarity and direction configuration

Fixes: fe1024d ("ASoC: cs35l41: Combine adjacent register writes")
Signed-off-by: David Rhodes <drhodes@opensource.cirrus.com>
Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20220303173059.269657-2-tanureal@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
drhodescirrus authored and gregkh committed Apr 8, 2022
1 parent 79d1752 commit 8bfbc24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sound/soc/codecs/cs35l41.c
Expand Up @@ -1035,8 +1035,8 @@ static int cs35l41_irq_gpio_config(struct cs35l41_private *cs35l41)

regmap_update_bits(cs35l41->regmap, CS35L41_GPIO2_CTRL1,
CS35L41_GPIO_POL_MASK | CS35L41_GPIO_DIR_MASK,
irq_gpio_cfg1->irq_pol_inv << CS35L41_GPIO_POL_SHIFT |
!irq_gpio_cfg1->irq_out_en << CS35L41_GPIO_DIR_SHIFT);
irq_gpio_cfg2->irq_pol_inv << CS35L41_GPIO_POL_SHIFT |
!irq_gpio_cfg2->irq_out_en << CS35L41_GPIO_DIR_SHIFT);

regmap_update_bits(cs35l41->regmap, CS35L41_GPIO_PAD_CONTROL,
CS35L41_GPIO1_CTRL_MASK | CS35L41_GPIO2_CTRL_MASK,
Expand Down

0 comments on commit 8bfbc24

Please sign in to comment.