From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752131AbaIIUD4 (ORCPT ); Tue, 9 Sep 2014 16:03:56 -0400 Received: from muin.pair.com ([209.68.1.55]:64686 "EHLO muin.pair.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751520AbaIIUDz (ORCPT ); Tue, 9 Sep 2014 16:03:55 -0400 Message-ID: <540F5D29.7040309@tabi.org> Date: Tue, 09 Sep 2014 15:03:53 -0500 From: Timur Tabi User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130329 Thunderbird/17.0.5 MIME-Version: 1.0 To: Nicolin Chen CC: Shengjiu Wang , Li.Xiubo@freescale.com, lgirdwood@gmail.com, broonie@kernel.org, perex@perex.cz, tiwai@suse.de, alsa-devel@alsa-project.org, linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org, mpa@pengutronix.de Subject: Re: [PATCH V1] ASoC: fsl_ssi: refine ipg clock usage in this module References: <20140909183804.GA6944@Asurada> <540F5706.1050303@tabi.org> <20140909195928.GA5224@Asurada> In-Reply-To: <20140909195928.GA5224@Asurada> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 09/09/2014 02:59 PM, Nicolin Chen wrote: > + /* > + * Initially mark the clock to NULL for all platforms so that later > + * clk_prepare_enable() will ignore and return 0 for non-clock cases. > + */ > + ssi_private->clk = NULL; According to Mark, NULL is a valid clock, so this should be instead: ssi_private->clk = PTR_ERR(-EINVAL); although that doesn't sit well with me.