Unverified Commit c3216f1d authored by Arnd Bergmann's avatar Arnd Bergmann
Browse files

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 a83bc87c.

* tag 'reset-fixes-for-v6.18' of https://git.pengutronix.de/git/pza/linux

:
  reset: imx8mp-audiomix: Fix bad mask values

Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parents 7b52117e 997c0633
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -14,8 +14,8 @@
#include <linux/reset-controller.h>

#define IMX8MP_AUDIOMIX_EARC_RESET_OFFSET	0x200
#define IMX8MP_AUDIOMIX_EARC_RESET_MASK		BIT(1)
#define IMX8MP_AUDIOMIX_EARC_PHY_RESET_MASK	BIT(2)
#define IMX8MP_AUDIOMIX_EARC_RESET_MASK		BIT(0)
#define IMX8MP_AUDIOMIX_EARC_PHY_RESET_MASK	BIT(1)

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