Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753977Ab0FTNLn (ORCPT ); Sun, 20 Jun 2010 09:11:43 -0400 Received: from opensource.wolfsonmicro.com ([80.75.67.52]:60028 "EHLO opensource2.wolfsonmicro.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753385Ab0FTNLk (ORCPT ); Sun, 20 Jun 2010 09:11:40 -0400 Date: Sun, 20 Jun 2010 14:11:53 +0100 From: Mark Brown To: Lars-Peter Clausen Cc: Ralf Baechle , linux-mips@linux-mips.org, linux-kernel@vger.kernel.org, Liam Girdwood , alsa-devel@alsa-project.org Subject: Re: [PATCH v3] alsa: ASoC: Add JZ4740 codec driver Message-ID: <20100620131153.GA2405@opensource.wolfsonmicro.com> References: <1276924111-11158-21-git-send-email-lars@metafoo.de> <1276958993-9012-1-git-send-email-lars@metafoo.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1276958993-9012-1-git-send-email-lars@metafoo.de> X-Cookie: Is this really happening? User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1109 Lines: 26 On Sat, Jun 19, 2010 at 04:49:53PM +0200, Lars-Peter Clausen wrote: This looks good, just one thing: > +#ifdef CONFIG_PM_SLEEP > + > +static int jz4740_codec_suspend(struct device *dev) > +{ > + struct jz4740_codec *jz4740_codec = dev_get_drvdata(dev); > + return jz4740_codec_set_bias_level(&jz4740_codec->codec, > + SND_SOC_BIAS_OFF); > +} You've got these set up on the CODEC platform device rather than the ASoC CODEC. This means that the suspend and resume will happen out of sequence with the rest of the ASoC suspend and resume which could result in poor performance or bugs if the device is suspended while the core still thinks it's active. For example, ASoC will use DAPM to shut down the CODEC and it's possible that the CODEC could be suspended (and generate an audible noise) while an external amplifier is still powered, worsening the problem. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/