From patchwork Fri Mar 23 15:45:41 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: kernel test robot X-Patchwork-Id: 10305017 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id CE5BB60384 for ; Fri, 23 Mar 2018 15:46:26 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BB9C62860A for ; Fri, 23 Mar 2018 15:46:26 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id AE7EF28846; Fri, 23 Mar 2018 15:46:26 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 02FC62860A for ; Fri, 23 Mar 2018 15:46:25 +0000 (UTC) Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id E7A4F266E6B; Fri, 23 Mar 2018 16:46:17 +0100 (CET) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id D199E266B0F; Fri, 23 Mar 2018 16:46:13 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by alsa0.perex.cz (Postfix) with ESMTP id 9B842266AE4 for ; Fri, 23 Mar 2018 16:46:07 +0100 (CET) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Mar 2018 08:46:05 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,350,1517904000"; d="scan'208";a="36249333" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by FMSMGA003.fm.intel.com with ESMTP; 23 Mar 2018 08:46:04 -0700 Received: from kbuild by bee with local (Exim 4.84_2) (envelope-from ) id 1ezOtH-000JvC-A7; Fri, 23 Mar 2018 23:46:03 +0800 Date: Fri, 23 Mar 2018 23:45:41 +0800 From: kbuild test robot To: Akshu Agrawal Message-ID: <20180323154541.GA1131@xian> References: <1521605103-13574-1-git-send-email-akshu.agrawal@amd.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1521605103-13574-1-git-send-email-akshu.agrawal@amd.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: fengguang.wu@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false Cc: alsa-devel@alsa-project.org, tiwai@suse.de, lgirdwood@gmail.com, djkurtz@chromium.org, akshu.agrawal@amd.com, broonie@kernel.org, kbuild-all@01.org Subject: [alsa-devel] [RFC PATCH] ASoC: AMD: acpd7219_clks_ops can be static X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP Fixes: 446f0d1d7a90 ("ASoC: AMD: Enable/Disable auxiliary clock via common clock framework") Signed-off-by: Fengguang Wu --- acp-da7219-max98357a.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/amd/acp-da7219-max98357a.c b/sound/soc/amd/acp-da7219-max98357a.c index baea370..389598e 100644 --- a/sound/soc/amd/acp-da7219-max98357a.c +++ b/sound/soc/amd/acp-da7219-max98357a.c @@ -309,7 +309,7 @@ static int acpd7219_clks_is_enabled(struct clk_hw *hw) return !(reg_val & OSCCLKENB); } -const struct clk_ops acpd7219_clks_ops = { +static const struct clk_ops acpd7219_clks_ops = { .prepare = acpd7219_clks_prepare, .unprepare = acpd7219_clks_unprepare, .is_enabled = acpd7219_clks_is_enabled,