Skip to content

Commit c3216f1

Browse files
committed
Merge tag 'reset-fixes-for-v6.18' of https://git.pengutronix.de/git/pza/linux into arm/fixes
Reset controller fixes for v6.18 * Fix incorrect EARC reset masks in the reset-imx8mp-audiomix driver, introduced in commit a83bc87. * tag 'reset-fixes-for-v6.18' of https://git.pengutronix.de/git/pza/linux: reset: imx8mp-audiomix: Fix bad mask values Signed-off-by: Arnd Bergmann <arnd@arndb.de>
2 parents 7b52117 + 997c063 commit c3216f1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/reset/reset-imx8mp-audiomix.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
#include <linux/reset-controller.h>
1515

1616
#define IMX8MP_AUDIOMIX_EARC_RESET_OFFSET 0x200
17-
#define IMX8MP_AUDIOMIX_EARC_RESET_MASK BIT(1)
18-
#define IMX8MP_AUDIOMIX_EARC_PHY_RESET_MASK BIT(2)
17+
#define IMX8MP_AUDIOMIX_EARC_RESET_MASK BIT(0)
18+
#define IMX8MP_AUDIOMIX_EARC_PHY_RESET_MASK BIT(1)
1919

2020
#define IMX8MP_AUDIOMIX_DSP_RUNSTALL_OFFSET 0x108
2121
#define IMX8MP_AUDIOMIX_DSP_RUNSTALL_MASK BIT(5)

0 commit comments

Comments
 (0)