This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit e791d73bb26f2ac4b390387490fc1583c31ba2d4 Author: Tiago Medicci Serrano <[email protected]> AuthorDate: Tue Nov 1 11:02:51 2022 -0300 drivers/audio/cs4344: fix configure function when setting mclk --- drivers/audio/cs4344.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/audio/cs4344.c b/drivers/audio/cs4344.c index 516af188dc..ac83e83c33 100644 --- a/drivers/audio/cs4344.c +++ b/drivers/audio/cs4344.c @@ -602,6 +602,7 @@ cs4344_configure(FAR struct audio_lowerhalf_s *dev, { audwarn("WARNING: MCLK could not be set on lower half\n"); priv->mclk_freq = 0; + ret = OK; } }
