From patchwork Sat Apr 19 08:44:00 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lars-Peter Clausen X-Patchwork-Id: 4019571 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id BE1089F2BA for ; Sat, 19 Apr 2014 08:46:18 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id F084A2040F for ; Sat, 19 Apr 2014 08:46:17 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id 0658F203F7 for ; Sat, 19 Apr 2014 08:46:17 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id F047A26565C; Sat, 19 Apr 2014 10:46:15 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 Received: from alsa0.perex.cz (localhost [IPv6:::1]) by alsa0.perex.cz (Postfix) with ESMTP id AB7442650AF; Sat, 19 Apr 2014 10:44:23 +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 4BAC6261A7C; Sat, 19 Apr 2014 10:44:20 +0200 (CEST) Received: from smtp-out-073.synserver.de (smtp-out-120.synserver.de [212.40.185.120]) by alsa0.perex.cz (Postfix) with ESMTP id 12BAA261A92 for ; Sat, 19 Apr 2014 10:44:14 +0200 (CEST) Received: (qmail 4131 invoked by uid 0); 19 Apr 2014 08:44:11 -0000 X-SynServer-TrustedSrc: 1 X-SynServer-AuthUser: lars@metafoo.de X-SynServer-PPID: 3808 Received: from ppp-188-174-33-94.dynamic.mnet-online.de (HELO lars-adi-laptop.fritz.box) [188.174.33.94] by 217.119.54.73 with SMTP; 19 Apr 2014 08:44:11 -0000 From: Lars-Peter Clausen To: Mark Brown , Liam Girdwood Date: Sat, 19 Apr 2014 10:44:00 +0200 Message-Id: <1397897042-20092-6-git-send-email-lars@metafoo.de> X-Mailer: git-send-email 1.8.0 In-Reply-To: <1397897042-20092-1-git-send-email-lars@metafoo.de> References: <1397897042-20092-1-git-send-email-lars@metafoo.de> Cc: alsa-devel@alsa-project.org, Lars-Peter Clausen , Sven Brandau , Daniel Mack Subject: [alsa-devel] [PATCH 5/7] ASoC: Remove snd_soc_update_bits_locked() 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: , MIME-Version: 1.0 Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP There are no users of snd_soc_update_bits_locked() left and it is identical to snd_soc_update_bits(). So it can be removed. Signed-off-by: Lars-Peter Clausen --- sound/soc/soc-io.c | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/sound/soc/soc-io.c b/sound/soc/soc-io.c index 0fdb924..0e11410 100644 --- a/sound/soc/soc-io.c +++ b/sound/soc/soc-io.c @@ -241,26 +241,6 @@ int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned int reg, EXPORT_SYMBOL_GPL(snd_soc_update_bits); /** - * snd_soc_update_bits_locked - update codec register bits - * @codec: audio codec - * @reg: codec register - * @mask: register mask - * @value: new value - * - * Writes new register value, and takes the codec mutex. - * - * Returns 1 for change else 0. - */ -int snd_soc_update_bits_locked(struct snd_soc_codec *codec, - unsigned int reg, unsigned int mask, - unsigned int value) -{ - return snd_soc_component_update_bits(&codec->component, reg, mask, - value); -} -EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked); - -/** * snd_soc_test_bits - test register for change * @codec: audio codec * @reg: codec register