From patchwork Wed May 8 09:19:00 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Takashi Iwai X-Patchwork-Id: 13658301 Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.223.130]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 2CC4D73514 for ; Wed, 8 May 2024 09:19:01 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.135.223.130 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715159943; cv=none; b=qq1X5gqPdnS8BeOBLO+N3s9xfWj75GVo+ReaAWLYzTt7Wj8tToMWOJOt5t7HWG/EvkCkSU/yYbVqiJpUEYjjsgojNt4OqYOfIxatlOazSsOcv1sdki5Q/yMq6XX+X8kBxROQAnbtuAAaWNWZC92WgEeG9S6QJFSLm90QaHwctFQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715159943; c=relaxed/simple; bh=h8vY5O6fEr1bTqRSsQOdk5J9cDWENEGzCuEQWBLTQnc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=QQL8c92qvNNCus5Lgdh1205oOgnrjz7QLHJEwgYpr5hjDLf83e477nmWZW+8xQel/2hXGO8A3xfkhtpNC6GjFpj+IZDH4/i7IWmWmJh+miNS4xbzKo4yequbdLLhJnB8E1kH1KdVv+FXkJmKKCcb5ewam5WMTHzeYKzEyi+p6uY= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=suse.de; spf=pass smtp.mailfrom=suse.de; arc=none smtp.client-ip=195.135.223.130 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=suse.de Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [IPv6:2a07:de40:b281:104:10:150:64:97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 7577C34E9B; Wed, 8 May 2024 09:19:00 +0000 (UTC) Authentication-Results: smtp-out1.suse.de; none Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 39EED13A3D; Wed, 8 May 2024 09:19:00 +0000 (UTC) Received: from dovecot-director2.suse.de ([10.150.64.162]) by imap1.dmz-prg2.suse.org with ESMTPSA id OBLlDIRDO2bFGQAAD6G6ig (envelope-from ); Wed, 08 May 2024 09:19:00 +0000 From: Takashi Iwai To: Mark Brown Cc: linux-sound@vger.kernel.org, Takashi Iwai , Andy Shevchenko Subject: [PATCH 1/7] ASoC: ab8500: Add missing module description Date: Wed, 8 May 2024 11:19:00 +0200 Message-ID: <20240508091909.27062-2-tiwai@suse.de> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240508091909.27062-1-tiwai@suse.de> References: <20240508091909.27062-1-tiwai@suse.de> Precedence: bulk X-Mailing-List: linux-sound@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spam-Level: X-Spamd-Result: default: False [-4.00 / 50.00]; REPLY(-4.00)[] X-Spam-Flag: NO X-Spam-Score: -4.00 X-Rspamd-Queue-Id: 7577C34E9B X-Rspamd-Server: rspamd2.dmz-prg2.suse.org X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Rspamd-Action: no action Now that make W=1 starts complaining the lack of MODULE_DESCRIPTION(), let's add the missing information. Suggested-by: Andy Shevchenko Link: https://lore.kernel.org/r/ZjpQm-hxLQtpgkUx@smile.fi.intel.com Signed-off-by: Takashi Iwai Reviewed-by: Andy Shevchenko --- sound/soc/codecs/ab8500-codec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/codecs/ab8500-codec.c b/sound/soc/codecs/ab8500-codec.c index 68342917419e..04b5e1d5a653 100644 --- a/sound/soc/codecs/ab8500-codec.c +++ b/sound/soc/codecs/ab8500-codec.c @@ -2571,4 +2571,5 @@ static struct platform_driver ab8500_codec_platform_driver = { }; module_platform_driver(ab8500_codec_platform_driver); +MODULE_DESCRIPTION("ASoC AB8500 codec driver"); MODULE_LICENSE("GPL v2"); From patchwork Wed May 8 09:19:01 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Takashi Iwai X-Patchwork-Id: 13658303 Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.223.130]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 787F474418 for ; Wed, 8 May 2024 09:19:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.135.223.130 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715159944; cv=none; b=ECfd8BPbJbTHLsgLB5BiCdb4+K2x0Xez0xVmdkeD0LFftWa/pJ9ZQ5kcxlByuCMCLnHju6i3ECDJK+/7KmFOHhsPKh60CToJMB+pgFr48131hN3QWMBo8Hefj5bcchQSGAR2yNsZXb8Cj4xVa/MUB8LMQfKOqb7nM+qInWGRc1I= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715159944; c=relaxed/simple; bh=vnt6Kvo44tR5gz8yXtEBX6ZL6pgwj47kXmlSKnOn2M8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=OxRvCi4FggIJTIJmH+cubI1XUhQ1SPNJnWKH7CoznV4GTLKZzufGIE8gwqGvBc47paR1LShScrwpe5ztFpuZK7D417M+Ad229ag8f2zwsBJqusWrrIdjDvFcD8Mvlr0MDAqsMc9icdJUfb+MGnfgiSS0Fc5bOWKwlBpUas/TNBo= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=suse.de; spf=pass smtp.mailfrom=suse.de; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b=1QVM05w+; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b=g7QKVXiG; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b=1QVM05w+; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b=g7QKVXiG; arc=none smtp.client-ip=195.135.223.130 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=suse.de Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="1QVM05w+"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="g7QKVXiG"; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="1QVM05w+"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="g7QKVXiG" Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [10.150.64.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id A486B34E9C; Wed, 8 May 2024 09:19:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1715159940; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=wLyeEQWmj0K66YiKcca9mNq3pKw7GaEyEY29r91p/Hw=; b=1QVM05w+7H1C+X1M67XsPyNwjjb6JmXa/51zfkQDh2+pLT3NdLqzHG0xEVSIlyuwpZQGRj PyNzpojOzx4gx9sNQd4NkOh0feB+XYjpNmWDA5VaVxXNEoKXmOPqXtDJlbv4OCWdTQbFBM VxLDzX1zbyivaHdHAQTLlyw1n60ZHHU= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1715159940; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=wLyeEQWmj0K66YiKcca9mNq3pKw7GaEyEY29r91p/Hw=; b=g7QKVXiGxgGqroMn/zwv8QRYsp983fIA/hqBnnwy8paGiTpUbZzajrFd/RJiFoJNDhvqTC X4YFj/azxXe52PCQ== Authentication-Results: smtp-out1.suse.de; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1715159940; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=wLyeEQWmj0K66YiKcca9mNq3pKw7GaEyEY29r91p/Hw=; b=1QVM05w+7H1C+X1M67XsPyNwjjb6JmXa/51zfkQDh2+pLT3NdLqzHG0xEVSIlyuwpZQGRj PyNzpojOzx4gx9sNQd4NkOh0feB+XYjpNmWDA5VaVxXNEoKXmOPqXtDJlbv4OCWdTQbFBM VxLDzX1zbyivaHdHAQTLlyw1n60ZHHU= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1715159940; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=wLyeEQWmj0K66YiKcca9mNq3pKw7GaEyEY29r91p/Hw=; b=g7QKVXiGxgGqroMn/zwv8QRYsp983fIA/hqBnnwy8paGiTpUbZzajrFd/RJiFoJNDhvqTC X4YFj/azxXe52PCQ== Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 713B613A27; Wed, 8 May 2024 09:19:00 +0000 (UTC) Received: from dovecot-director2.suse.de ([10.150.64.162]) by imap1.dmz-prg2.suse.org with ESMTPSA id GDJVGoRDO2bFGQAAD6G6ig (envelope-from ); Wed, 08 May 2024 09:19:00 +0000 From: Takashi Iwai To: Mark Brown Cc: linux-sound@vger.kernel.org, Takashi Iwai , Andy Shevchenko Subject: [PATCH 2/7] ASoC: sigmadsp: Add missing module description Date: Wed, 8 May 2024 11:19:01 +0200 Message-ID: <20240508091909.27062-3-tiwai@suse.de> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240508091909.27062-1-tiwai@suse.de> References: <20240508091909.27062-1-tiwai@suse.de> Precedence: bulk X-Mailing-List: linux-sound@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Spam-Flag: NO X-Spam-Score: -6.78 X-Spam-Level: X-Spamd-Result: default: False [-6.78 / 50.00]; REPLY(-4.00)[]; BAYES_HAM(-2.98)[99.89%]; MID_CONTAINS_FROM(1.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; R_MISSING_CHARSET(0.50)[]; NEURAL_HAM_SHORT(-0.20)[-1.000]; MIME_GOOD(-0.10)[text/plain]; MIME_TRACE(0.00)[0:+]; TO_DN_SOME(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; ARC_NA(0.00)[]; DKIM_SIGNED(0.00)[suse.de:s=susede2_rsa,suse.de:s=susede2_ed25519]; FUZZY_BLOCKED(0.00)[rspamd.com]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[4]; DBL_BLOCKED_OPENRESOLVER(0.00)[suse.de:email,imap1.dmz-prg2.suse.org:helo,imap1.dmz-prg2.suse.org:rdns]; RCVD_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[] Now that make W=1 starts complaining the lack of MODULE_DESCRIPTION(), let's add the missing information. Suggested-by: Andy Shevchenko Link: https://lore.kernel.org/r/ZjpQm-hxLQtpgkUx@smile.fi.intel.com Signed-off-by: Takashi Iwai --- sound/soc/codecs/sigmadsp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/codecs/sigmadsp.c b/sound/soc/codecs/sigmadsp.c index 56546e2394ab..201f74e3a7ae 100644 --- a/sound/soc/codecs/sigmadsp.c +++ b/sound/soc/codecs/sigmadsp.c @@ -805,4 +805,5 @@ int sigmadsp_restrict_params(struct sigmadsp *sigmadsp, } EXPORT_SYMBOL_GPL(sigmadsp_restrict_params); +MODULE_DESCRIPTION("Analog Devices SigmaStudio firmware helpers"); MODULE_LICENSE("GPL"); From patchwork Wed May 8 09:19:02 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Takashi Iwai X-Patchwork-Id: 13658302 Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.223.130]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 51B9674400 for ; Wed, 8 May 2024 09:19:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.135.223.130 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715159944; cv=none; b=Rg8O+w/S6erFkaoHSyLXiwsS9I10YUrbeBsLNgzhkSVa0LV+oj5XQzCgDG20w6GTewCueUabCzlia3tYB/cZmN1NEt1Sneu07/R1nX0mH5PPBAwzAOG3C9OtSsSBCTAlloTMlU7M2sQEvqXMtbdXqmiNb4l345aJW+MrvCqzdX8= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715159944; c=relaxed/simple; bh=6ZRV6G45GNHkzbbrTeWKs9MawVMCS4eH6KhG3sLCD18=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=XD1bcCfVqkrVmW0LYEotfFco7Gj2zQFawh/l6CQoLSuanb5GM5xnKMsGTLn5+Ksjm5mFyNlYGhnd/oGdpVpQA28DPB5D9HuWXuz57mWA947IQupGvjPPMbZ0ELiA8gTLP6du1uzM/ak4lraXW4Ca80TDjEpFy/ZIxvCmDn/XUvA= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=suse.de; spf=pass smtp.mailfrom=suse.de; arc=none smtp.client-ip=195.135.223.130 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=suse.de Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [IPv6:2a07:de40:b281:104:10:150:64:97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id D2CFB34E9D; Wed, 8 May 2024 09:19:00 +0000 (UTC) Authentication-Results: smtp-out1.suse.de; none Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id AA4CC13A3D; Wed, 8 May 2024 09:19:00 +0000 (UTC) Received: from dovecot-director2.suse.de ([10.150.64.162]) by imap1.dmz-prg2.suse.org with ESMTPSA id 0G9MKIRDO2bFGQAAD6G6ig (envelope-from ); Wed, 08 May 2024 09:19:00 +0000 From: Takashi Iwai To: Mark Brown Cc: linux-sound@vger.kernel.org, Takashi Iwai , Andy Shevchenko Subject: [PATCH 3/7] ASoC: qcom: Add missing module descriptions Date: Wed, 8 May 2024 11:19:02 +0200 Message-ID: <20240508091909.27062-4-tiwai@suse.de> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240508091909.27062-1-tiwai@suse.de> References: <20240508091909.27062-1-tiwai@suse.de> Precedence: bulk X-Mailing-List: linux-sound@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Rspamd-Action: no action X-Rspamd-Server: rspamd1.dmz-prg2.suse.org X-Spam-Level: X-Spamd-Result: default: False [-4.00 / 50.00]; REPLY(-4.00)[] X-Spam-Flag: NO X-Spam-Score: -4.00 X-Rspamd-Queue-Id: D2CFB34E9D Now that make W=1 starts complaining the lack of MODULE_DESCRIPTION(), let's add the missing information. Suggested-by: Andy Shevchenko Link: https://lore.kernel.org/r/ZjpQm-hxLQtpgkUx@smile.fi.intel.com Signed-off-by: Takashi Iwai --- sound/soc/qcom/common.c | 2 ++ sound/soc/qcom/qdsp6/q6dsp-common.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/sound/soc/qcom/common.c b/sound/soc/qcom/common.c index 747041fa7866..3d02aa3844f2 100644 --- a/sound/soc/qcom/common.c +++ b/sound/soc/qcom/common.c @@ -239,4 +239,6 @@ int qcom_snd_wcd_jack_setup(struct snd_soc_pcm_runtime *rtd, return 0; } EXPORT_SYMBOL_GPL(qcom_snd_wcd_jack_setup); + +MODULE_DESCRIPTION("ASoC Qualcomm helper functions"); MODULE_LICENSE("GPL"); diff --git a/sound/soc/qcom/qdsp6/q6dsp-common.c b/sound/soc/qcom/qdsp6/q6dsp-common.c index 95585dea2b36..f74585d88bd6 100644 --- a/sound/soc/qcom/qdsp6/q6dsp-common.c +++ b/sound/soc/qcom/qdsp6/q6dsp-common.c @@ -98,4 +98,6 @@ int q6dsp_get_channel_allocation(int channels) return channel_allocation; } EXPORT_SYMBOL_GPL(q6dsp_get_channel_allocation); + +MODULE_DESCRIPTION("ASoC MSM QDSP6 helper functions"); MODULE_LICENSE("GPL v2"); From patchwork Wed May 8 09:19:03 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Takashi Iwai X-Patchwork-Id: 13658304 Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.223.130]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id AA78C74419 for ; Wed, 8 May 2024 09:19:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.135.223.130 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715159945; cv=none; b=ojDbru5+2s9WeET3yy15WFZOcpYVjk+DDXVjxQjg7x/pkgxOc49zRntTf7Dxn9C2+JOR2nV+n1hLveNb0l2BaGriI5eUdn/u1AIQZLxD7ZmSEYoFEePLQ3NE841Pzpcv8MJW189ZCyO9RavnYFgyoNHT+jqN+WQ3s7j19AAMCqU= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715159945; c=relaxed/simple; bh=Y0efM1+qHEJfC4OddC8BrxDHBvmcl5W9PsvtNvgefvk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=bW0dk48sPN28q6UhRT1AYvE4pvmnR4oCrCwvdwtnxh4aLI6gGT0GVLSdxH+JZoKLRvj4j8Kmatw8gT9JJUv40W7kG/X7SYuqaE8LLlrEOxvS2DjhkwAj/ic9sF0nNw/zxrz4C2fd3fWaQfnbrThvrBhi0JRVU2Ut73Kb0tAp7T0= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=suse.de; spf=pass smtp.mailfrom=suse.de; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b=k6i9gNOR; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b=eui3YB5C; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b=k6i9gNOR; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b=eui3YB5C; arc=none smtp.client-ip=195.135.223.130 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=suse.de Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="k6i9gNOR"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="eui3YB5C"; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="k6i9gNOR"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="eui3YB5C" Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [10.150.64.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 12CD034E9F; Wed, 8 May 2024 09:19:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1715159941; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=yVI5xZqOQVocOJ97DEMMQ1Y+WSI5sn+yHzDIRPz6Rr4=; b=k6i9gNORmCLb7uyZB8PBVNh+Nb6xexSTxD5Y54n+nKtS5PekEo47nbSsR7ibMwSISjFcXy O9evi9k8qnZgdoolqw1KXvAVBQ3bj5Fw8Lwi3hdFOehiebMVJvIjnS10GjYW9VMxr/jiXn YErECO9mx1J02wJecAWAHUUnne54r/w= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1715159941; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=yVI5xZqOQVocOJ97DEMMQ1Y+WSI5sn+yHzDIRPz6Rr4=; b=eui3YB5C6W9kVDAhzSrBT975SKLd33ygHK3a1r3J7/ddawzH/zTJKL//L4lqKaET3e+Lp7 F5kQF5cNSG11pwCw== Authentication-Results: smtp-out1.suse.de; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1715159941; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=yVI5xZqOQVocOJ97DEMMQ1Y+WSI5sn+yHzDIRPz6Rr4=; b=k6i9gNORmCLb7uyZB8PBVNh+Nb6xexSTxD5Y54n+nKtS5PekEo47nbSsR7ibMwSISjFcXy O9evi9k8qnZgdoolqw1KXvAVBQ3bj5Fw8Lwi3hdFOehiebMVJvIjnS10GjYW9VMxr/jiXn YErECO9mx1J02wJecAWAHUUnne54r/w= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1715159941; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=yVI5xZqOQVocOJ97DEMMQ1Y+WSI5sn+yHzDIRPz6Rr4=; b=eui3YB5C6W9kVDAhzSrBT975SKLd33ygHK3a1r3J7/ddawzH/zTJKL//L4lqKaET3e+Lp7 F5kQF5cNSG11pwCw== Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id D8FD013A27; Wed, 8 May 2024 09:19:00 +0000 (UTC) Received: from dovecot-director2.suse.de ([10.150.64.162]) by imap1.dmz-prg2.suse.org with ESMTPSA id OGOpM4RDO2bFGQAAD6G6ig (envelope-from ); Wed, 08 May 2024 09:19:00 +0000 From: Takashi Iwai To: Mark Brown Cc: linux-sound@vger.kernel.org, Takashi Iwai , Andy Shevchenko Subject: [PATCH 4/7] ASoC: dmaengine: Add missing module description Date: Wed, 8 May 2024 11:19:03 +0200 Message-ID: <20240508091909.27062-5-tiwai@suse.de> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240508091909.27062-1-tiwai@suse.de> References: <20240508091909.27062-1-tiwai@suse.de> Precedence: bulk X-Mailing-List: linux-sound@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Spam-Flag: NO X-Spam-Score: -6.80 X-Spam-Level: X-Spamd-Result: default: False [-6.80 / 50.00]; REPLY(-4.00)[]; BAYES_HAM(-3.00)[100.00%]; MID_CONTAINS_FROM(1.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; R_MISSING_CHARSET(0.50)[]; NEURAL_HAM_SHORT(-0.20)[-1.000]; MIME_GOOD(-0.10)[text/plain]; MIME_TRACE(0.00)[0:+]; TO_DN_SOME(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; ARC_NA(0.00)[]; DKIM_SIGNED(0.00)[suse.de:s=susede2_rsa,suse.de:s=susede2_ed25519]; FUZZY_BLOCKED(0.00)[rspamd.com]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[4]; DBL_BLOCKED_OPENRESOLVER(0.00)[suse.de:email,imap1.dmz-prg2.suse.org:helo,imap1.dmz-prg2.suse.org:rdns]; RCVD_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[] Now that make W=1 starts complaining the lack of MODULE_DESCRIPTION(), let's add the missing information. Suggested-by: Andy Shevchenko Link: https://lore.kernel.org/r/ZjpQm-hxLQtpgkUx@smile.fi.intel.com Signed-off-by: Takashi Iwai --- sound/soc/soc-generic-dmaengine-pcm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/soc-generic-dmaengine-pcm.c b/sound/soc/soc-generic-dmaengine-pcm.c index 092ca09f3631..c29082eea09f 100644 --- a/sound/soc/soc-generic-dmaengine-pcm.c +++ b/sound/soc/soc-generic-dmaengine-pcm.c @@ -491,4 +491,5 @@ void snd_dmaengine_pcm_unregister(struct device *dev) } EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_unregister); +MODULE_DESCRIPTION("ASoC helpers for generic PCM dmaengine API"); MODULE_LICENSE("GPL"); From patchwork Wed May 8 09:19:04 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Takashi Iwai X-Patchwork-Id: 13658305 Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.223.130]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 022207441A for ; Wed, 8 May 2024 09:19:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.135.223.130 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715159945; cv=none; b=QL8TzUgbVPcpOqU65MlolrwxNuJqj5Eh+F2hRkdMIQnQv61OkbbuRtaMeaTvY6Mfs1JsI1WEMqSrOE9IaOANC4TQDdOmyA8+H0avBZGPCnA0ysV++2YGN04i4YoQAZqxcIECIHDHbItMdWQDTTIW9wrOGAlJ98zy3H+t53LmZNY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715159945; c=relaxed/simple; bh=uN7eSoA9J4Nslef00KvQqz/5Cz1QsVRq1ITXt7DL8Ww=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Av7Q0Ur+4pUWq8cwXtZNYVnSkEE9fiLlC2j+z7FIQ3ff7bLz/c0oqYGq7XjHCv1A5xwHsbyzDUGuyxNvTkXw9iEFQXWQNKpwpVHpzySIJ8ptdc09ehtsYBOXBOwgPTlddQ0p2rJPcM/hhT2l9DRVOLlWz5qCpcwh0H5Qy/JsO2s= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=suse.de; spf=pass smtp.mailfrom=suse.de; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b=ulKDxoLf; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b=FJ0JaOna; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b=ulKDxoLf; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b=FJ0JaOna; arc=none smtp.client-ip=195.135.223.130 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=suse.de Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="ulKDxoLf"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="FJ0JaOna"; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="ulKDxoLf"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="FJ0JaOna" Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [10.150.64.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 48BD634EA1; Wed, 8 May 2024 09:19:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1715159941; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=mdx+gpib0c7DxK2eLyiTVYHOuHnSIZ0mTNFq9+aWTpQ=; b=ulKDxoLfslor6HMC3xQviwpLwSJmxuHCR8dNzQPSzpK5Epw6zFlfax2Iw94n30fxDX2KBo qwqAeByZRxl8YjgWrR1HFs9yHqx4hSHU2LjxkYbBuWLVMajg0zaJmzIMmw2UyP2KeDRxz1 FlJyZqenQDp68a9/sI3n5Wdy0dbh9Uc= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1715159941; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=mdx+gpib0c7DxK2eLyiTVYHOuHnSIZ0mTNFq9+aWTpQ=; b=FJ0JaOnaZx6I5m0FQ9UBauA21ORgZkO5yTTcRaWUVtwr484mVzHKiTcH9Nj808AAJGWx9R +L+OfeMthdCb2vCw== Authentication-Results: smtp-out1.suse.de; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1715159941; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=mdx+gpib0c7DxK2eLyiTVYHOuHnSIZ0mTNFq9+aWTpQ=; b=ulKDxoLfslor6HMC3xQviwpLwSJmxuHCR8dNzQPSzpK5Epw6zFlfax2Iw94n30fxDX2KBo qwqAeByZRxl8YjgWrR1HFs9yHqx4hSHU2LjxkYbBuWLVMajg0zaJmzIMmw2UyP2KeDRxz1 FlJyZqenQDp68a9/sI3n5Wdy0dbh9Uc= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1715159941; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=mdx+gpib0c7DxK2eLyiTVYHOuHnSIZ0mTNFq9+aWTpQ=; b=FJ0JaOnaZx6I5m0FQ9UBauA21ORgZkO5yTTcRaWUVtwr484mVzHKiTcH9Nj808AAJGWx9R +L+OfeMthdCb2vCw== Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 1909813A3D; Wed, 8 May 2024 09:19:01 +0000 (UTC) Received: from dovecot-director2.suse.de ([10.150.64.162]) by imap1.dmz-prg2.suse.org with ESMTPSA id AO/PBIVDO2bFGQAAD6G6ig (envelope-from ); Wed, 08 May 2024 09:19:01 +0000 From: Takashi Iwai To: Mark Brown Cc: linux-sound@vger.kernel.org, Takashi Iwai , Andy Shevchenko Subject: [PATCH 5/7] ASoC: topology-test: Add missing module description Date: Wed, 8 May 2024 11:19:04 +0200 Message-ID: <20240508091909.27062-6-tiwai@suse.de> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240508091909.27062-1-tiwai@suse.de> References: <20240508091909.27062-1-tiwai@suse.de> Precedence: bulk X-Mailing-List: linux-sound@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Spam-Flag: NO X-Spam-Score: -6.80 X-Spam-Level: X-Spamd-Result: default: False [-6.80 / 50.00]; REPLY(-4.00)[]; BAYES_HAM(-3.00)[99.99%]; MID_CONTAINS_FROM(1.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; R_MISSING_CHARSET(0.50)[]; NEURAL_HAM_SHORT(-0.20)[-1.000]; MIME_GOOD(-0.10)[text/plain]; MIME_TRACE(0.00)[0:+]; TO_DN_SOME(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; ARC_NA(0.00)[]; DKIM_SIGNED(0.00)[suse.de:s=susede2_rsa,suse.de:s=susede2_ed25519]; FUZZY_BLOCKED(0.00)[rspamd.com]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[4]; DBL_BLOCKED_OPENRESOLVER(0.00)[suse.de:email,imap1.dmz-prg2.suse.org:helo,imap1.dmz-prg2.suse.org:rdns]; RCVD_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[] Now that make W=1 starts complaining the lack of MODULE_DESCRIPTION(), let's add the missing information. Suggested-by: Andy Shevchenko Link: https://lore.kernel.org/r/ZjpQm-hxLQtpgkUx@smile.fi.intel.com Signed-off-by: Takashi Iwai --- sound/soc/soc-topology-test.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/soc-topology-test.c b/sound/soc/soc-topology-test.c index 70cbccc42a42..40147788f22a 100644 --- a/sound/soc/soc-topology-test.c +++ b/sound/soc/soc-topology-test.c @@ -819,4 +819,5 @@ static struct kunit_suite snd_soc_tplg_test_suite = { kunit_test_suites(&snd_soc_tplg_test_suite); +MODULE_DESCRIPTION("ASoC Topology Kernel Unit Tests"); MODULE_LICENSE("GPL"); From patchwork Wed May 8 09:19:05 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Takashi Iwai X-Patchwork-Id: 13658306 Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.223.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 4637D74424 for ; Wed, 8 May 2024 09:19:03 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.135.223.131 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715159945; cv=none; b=RxtmmRT/9deUw8gCcTy8WpNCAffD42F8z/H0berxzDq+pp6I6xIo7TFdBBNi5EwO5rFsZf50dnBNqGQ7AcEHR5/kAALqsO9l1gP0dh2GEDb9BucLB/PkxW72/DYp3NlIwvUmjjxV8SGDDQH/REXS1Cw7+SEet/P+JyXwS5J9g5M= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715159945; c=relaxed/simple; bh=OrpKn4K+HbTMZNItSc2zx1kyygzzqMsRE0J5m0otJB0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=j+hR5Yqi2aB8Qs7i5/Q0e/AF5v1eszQSymm6vGqHdZdSYPotWRzXdie9CT+7hRobIdNyaWxChFVGm1uP4i2lX1mcvKXu8XDFlGdg6Tf8whZpSk2JAVjrv2WvH3PSo0Ai9pflDrfvvRugg0dFwHY+EXvICCvzMjcv4P9chVxQf4w= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=suse.de; spf=pass smtp.mailfrom=suse.de; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b=EIV3wmym; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b=JaRnoPrQ; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b=EIV3wmym; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b=JaRnoPrQ; arc=none smtp.client-ip=195.135.223.131 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=suse.de Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="EIV3wmym"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="JaRnoPrQ"; dkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de header.b="EIV3wmym"; dkim=permerror (0-bit key) header.d=suse.de header.i=@suse.de header.b="JaRnoPrQ" Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [10.150.64.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 842875C714; Wed, 8 May 2024 09:19:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1715159941; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=vjEoQV0/xwc345af8H0wegTFJA8L1fo8wxAAlpcyfPY=; b=EIV3wmymJriRVVmfbLs7S+jPm9fmhlBSEqkAES9y5og9xIusl19CYl4uHk/8QgfVS2sZCC Iiz0ZBXU/hszeXAWTr+4PG6ypo9z/s4rsYtC6NT6Nl0kuBA8zNS1IQDAVNFZ3PvwW5z/dz QFhykm9cy56/T2etEKuf4CTw8JiMEXI= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1715159941; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=vjEoQV0/xwc345af8H0wegTFJA8L1fo8wxAAlpcyfPY=; b=JaRnoPrQOYVSuXhS+BTVbYkAlMUpwVyGNqeQ9FJ56gNuquq84yLWb59keF5kO6MVXXvnOl X6nG/OUa5t58u+Bg== Authentication-Results: smtp-out2.suse.de; none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1715159941; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=vjEoQV0/xwc345af8H0wegTFJA8L1fo8wxAAlpcyfPY=; b=EIV3wmymJriRVVmfbLs7S+jPm9fmhlBSEqkAES9y5og9xIusl19CYl4uHk/8QgfVS2sZCC Iiz0ZBXU/hszeXAWTr+4PG6ypo9z/s4rsYtC6NT6Nl0kuBA8zNS1IQDAVNFZ3PvwW5z/dz QFhykm9cy56/T2etEKuf4CTw8JiMEXI= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1715159941; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=vjEoQV0/xwc345af8H0wegTFJA8L1fo8wxAAlpcyfPY=; b=JaRnoPrQOYVSuXhS+BTVbYkAlMUpwVyGNqeQ9FJ56gNuquq84yLWb59keF5kO6MVXXvnOl X6nG/OUa5t58u+Bg== Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 51BA913A27; Wed, 8 May 2024 09:19:01 +0000 (UTC) Received: from dovecot-director2.suse.de ([10.150.64.162]) by imap1.dmz-prg2.suse.org with ESMTPSA id sO0xEoVDO2bFGQAAD6G6ig (envelope-from ); Wed, 08 May 2024 09:19:01 +0000 From: Takashi Iwai To: Mark Brown Cc: linux-sound@vger.kernel.org, Takashi Iwai , Andy Shevchenko Subject: [PATCH 6/7] ASoC: ux500: Add missing module description Date: Wed, 8 May 2024 11:19:05 +0200 Message-ID: <20240508091909.27062-7-tiwai@suse.de> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240508091909.27062-1-tiwai@suse.de> References: <20240508091909.27062-1-tiwai@suse.de> Precedence: bulk X-Mailing-List: linux-sound@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Spam-Flag: NO X-Spam-Score: -6.80 X-Spam-Level: X-Spamd-Result: default: False [-6.80 / 50.00]; REPLY(-4.00)[]; BAYES_HAM(-3.00)[99.99%]; MID_CONTAINS_FROM(1.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; R_MISSING_CHARSET(0.50)[]; NEURAL_HAM_SHORT(-0.20)[-1.000]; MIME_GOOD(-0.10)[text/plain]; MIME_TRACE(0.00)[0:+]; TO_DN_SOME(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; ARC_NA(0.00)[]; DKIM_SIGNED(0.00)[suse.de:s=susede2_rsa,suse.de:s=susede2_ed25519]; FUZZY_BLOCKED(0.00)[rspamd.com]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[4]; DBL_BLOCKED_OPENRESOLVER(0.00)[suse.de:email,imap1.dmz-prg2.suse.org:helo,imap1.dmz-prg2.suse.org:rdns]; RCVD_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_TLS_ALL(0.00)[] Now that make W=1 starts complaining the lack of MODULE_DESCRIPTION(), let's add the missing information. Suggested-by: Andy Shevchenko Link: https://lore.kernel.org/r/ZjpQm-hxLQtpgkUx@smile.fi.intel.com Signed-off-by: Takashi Iwai --- sound/soc/ux500/ux500_msp_dai.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/ux500/ux500_msp_dai.c b/sound/soc/ux500/ux500_msp_dai.c index cde0dd8e2569..3fd13e8dd110 100644 --- a/sound/soc/ux500/ux500_msp_dai.c +++ b/sound/soc/ux500/ux500_msp_dai.c @@ -820,4 +820,5 @@ static struct platform_driver msp_i2s_driver = { }; module_platform_driver(msp_i2s_driver); +MODULE_DESCRIPTION("ASoC Ux500 I2S driver"); MODULE_LICENSE("GPL v2"); From patchwork Wed May 8 09:19:06 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Takashi Iwai X-Patchwork-Id: 13658307 Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.223.130]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 7C57774E0A for ; Wed, 8 May 2024 09:19:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.135.223.130 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715159946; cv=none; b=cTHdDuNhRp2YkpLRvyUbdEFRlKB9zT4oHp4gKJQ6Ckmd0CtBdrBuBwBfwXOuUESMqTASlZpBsaJKj7kiABdP86pn660IeJnCeKrJ2tY84rftOfuggk/GdlfEfl6cz1sX2MqObnIAJG8lTwY1ti3gVldCg3izOfxz0GhXXJ1gt/s= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715159946; c=relaxed/simple; bh=yG4XwU75ZxFshbYkRVXzI993znr4vBhQUNHu8u62aNc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=JYs/vr5whOKN+sFvHcWLiJbzdO337jtjyjAmuUbmXKNXkE/iAJx1U294WYKO3Vu9Aj24TWZw2fiigScPWnQRuFt7goWna0uoTP2rYXNFaofShugX8ajPNuuqWSRm2wwEZeXdR5Yl9ZAgNSsL3dc0GPo9fiXY/mW+rnmH/bK0Uvc= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=suse.de; spf=pass smtp.mailfrom=suse.de; arc=none smtp.client-ip=195.135.223.130 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=suse.de Received: from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org [IPv6:2a07:de40:b281:104:10:150:64:97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id AD03534EA2; Wed, 8 May 2024 09:19:01 +0000 (UTC) Authentication-Results: smtp-out1.suse.de; none Received: from imap1.dmz-prg2.suse.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id 8A47B13A3D; Wed, 8 May 2024 09:19:01 +0000 (UTC) Received: from dovecot-director2.suse.de ([10.150.64.162]) by imap1.dmz-prg2.suse.org with ESMTPSA id 2FuNIIVDO2bFGQAAD6G6ig (envelope-from ); Wed, 08 May 2024 09:19:01 +0000 From: Takashi Iwai To: Mark Brown Cc: linux-sound@vger.kernel.org, Takashi Iwai , Andy Shevchenko Subject: [PATCH 7/7] ASoC: xilinx: Add missing module descriptions Date: Wed, 8 May 2024 11:19:06 +0200 Message-ID: <20240508091909.27062-8-tiwai@suse.de> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240508091909.27062-1-tiwai@suse.de> References: <20240508091909.27062-1-tiwai@suse.de> Precedence: bulk X-Mailing-List: linux-sound@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Rspamd-Action: no action X-Rspamd-Server: rspamd1.dmz-prg2.suse.org X-Spam-Level: X-Spamd-Result: default: False [-4.00 / 50.00]; REPLY(-4.00)[] X-Spam-Flag: NO X-Spam-Score: -4.00 X-Rspamd-Queue-Id: AD03534EA2 Now that make W=1 starts complaining the lack of MODULE_DESCRIPTION(), let's add the missing information. Suggested-by: Andy Shevchenko Link: https://lore.kernel.org/r/ZjpQm-hxLQtpgkUx@smile.fi.intel.com Signed-off-by: Takashi Iwai --- sound/soc/xilinx/xlnx_formatter_pcm.c | 2 ++ sound/soc/xilinx/xlnx_i2s.c | 1 + 2 files changed, 3 insertions(+) diff --git a/sound/soc/xilinx/xlnx_formatter_pcm.c b/sound/soc/xilinx/xlnx_formatter_pcm.c index 299cfb5e2022..158fc21a86c1 100644 --- a/sound/soc/xilinx/xlnx_formatter_pcm.c +++ b/sound/soc/xilinx/xlnx_formatter_pcm.c @@ -721,5 +721,7 @@ static struct platform_driver xlnx_formatter_pcm_driver = { }; module_platform_driver(xlnx_formatter_pcm_driver); + +MODULE_DESCRIPTION("ASoC driver for Xilinx audio formatter"); MODULE_AUTHOR("Maruthi Srinivas Bayyavarapu "); MODULE_LICENSE("GPL v2"); diff --git a/sound/soc/xilinx/xlnx_i2s.c b/sound/soc/xilinx/xlnx_i2s.c index 9de92d35e30e..ca915a001ad5 100644 --- a/sound/soc/xilinx/xlnx_i2s.c +++ b/sound/soc/xilinx/xlnx_i2s.c @@ -253,6 +253,7 @@ static struct platform_driver xlnx_i2s_aud_driver = { module_platform_driver(xlnx_i2s_aud_driver); +MODULE_DESCRIPTION("ASoC driver for Xilinx I2S audio"); MODULE_LICENSE("GPL v2"); MODULE_AUTHOR("Praveen Vuppala "); MODULE_AUTHOR("Maruthi Srinivas Bayyavarapu ");