From patchwork Thu Jul 19 17:48:10 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fengguang Wu X-Patchwork-Id: 10534985 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 4A605600D0 for ; Thu, 19 Jul 2018 17:48:48 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 392BC29840 for ; Thu, 19 Jul 2018 17:48:48 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 2D1AA29BE0; Thu, 19 Jul 2018 17:48:48 +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=-2.9 required=2.0 tests=BAYES_00, MAILING_LIST_MULTI, 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 6660B29840 for ; Thu, 19 Jul 2018 17:48:47 +0000 (UTC) Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id 74DFB2673C7; Thu, 19 Jul 2018 19:48:43 +0200 (CEST) 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 3E07C267600; Thu, 19 Jul 2018 19:48:40 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by alsa0.perex.cz (Postfix) with ESMTP id 1E11B26733D for ; Thu, 19 Jul 2018 19:48:33 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Jul 2018 10:48:30 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,375,1526367600"; d="scan'208";a="59021659" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by orsmga006.jf.intel.com with ESMTP; 19 Jul 2018 10:48:29 -0700 Received: from kbuild by bee with local (Exim 4.84_2) (envelope-from ) id 1fgD2S-000Kx6-N2; Fri, 20 Jul 2018 01:48:28 +0800 Date: Fri, 20 Jul 2018 01:48:10 +0800 From: kbuild test robot To: Jorge Sanjuan Message-ID: <20180719174810.GA74610@lkp-hsx03> References: <20180719112215.4219-3-jorge.sanjuan@codethink.co.uk> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20180719112215.4219-3-jorge.sanjuan@codethink.co.uk> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: lkp@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false Cc: tiwai@suse.de, alsa-devel@alsa-project.org, kbuild-all@01.org, linux-kernel@vger.kernel.org Subject: [alsa-devel] [RFC PATCH] ALSA: usb-audio: snd_usb_add_audio_stream_v3() 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: 69abc040c878 ("ALSA: usb-audio: AudioStreaming Power Domain parsing") Signed-off-by: kbuild test robot --- stream.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sound/usb/stream.c b/sound/usb/stream.c index 031878a..c0567fa1 100644 --- a/sound/usb/stream.c +++ b/sound/usb/stream.c @@ -559,10 +559,10 @@ int snd_usb_add_audio_stream(struct snd_usb_audio *chip, return __snd_usb_add_audio_stream(chip, stream, fp, NULL); } -int snd_usb_add_audio_stream_v3(struct snd_usb_audio *chip, - int stream, - struct audioformat *fp, - struct snd_usb_power_domain *pd) +static int snd_usb_add_audio_stream_v3(struct snd_usb_audio *chip, + int stream, + struct audioformat *fp, + struct snd_usb_power_domain *pd) { return __snd_usb_add_audio_stream(chip, stream, fp, pd); }