From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 53CAD1B96D; Thu, 18 Jan 2024 10:54:06 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705575246; cv=none; b=aAqsGaPxSYxtTGQxd/mBG+haAt8nFAYUw+FUrSjPRhmO2ciH3KjLC+jGBjO0Mld00AYfa9T9L8nLIV4ZV6L6PRvu1RTGf4+xqQhjwMSxzz1jf4m2qGuIVgdsUWVr7wwzFXDMV7qSgoZAOt0Vx0Uqu1jDqEWjaAM5mTdoBV8jltk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705575246; c=relaxed/simple; bh=ww8fNHG+Wi/A92BlkOEtNMqrP9lQv8/RO8MYs3ynH8s=; h=Received:DKIM-Signature:From:To:Cc:Subject:Date:Message-ID: X-Mailer:In-Reply-To:References:User-Agent:X-stable: X-Patchwork-Hint:MIME-Version:Content-Transfer-Encoding; b=F0G7lbnVhKfQECXCeMV9eLgVF0t3be3l0gKEgDEMcOO52dQyVT9V6S6aLpCE7fH2bwAeUdcmNJCUV8MV9RnwBHriUtgdfnmQccVPXrGrWnRfJ+8R6RqPZZqIrfvoMMoJovf6D9AB2HfhLFFXxnIjcah1IGfAXhv7fKSbs1+HFxE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=lgwE1GvL; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="lgwE1GvL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CCF3FC433C7; Thu, 18 Jan 2024 10:54:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1705575246; bh=ww8fNHG+Wi/A92BlkOEtNMqrP9lQv8/RO8MYs3ynH8s=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=lgwE1GvLaIk1/MxQWu6QIjs40OfNcJEUsC8EIwkSz7Lu+0P3Ty4m9B8N4w0HJtuZF cpGvHZbnjWseFlo9ubuR4CYpmnMS5DSOZuKC8namMg6nG41Awx17mlFmSA4wYM1a2+ i+ewrC2WlWkQlJvQyCRF2+8LOqLnEjlOSBLTT0Mg= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Maciej Strozek , Charles Keepax , Mark Brown , Sasha Levin Subject: [PATCH 6.6 035/150] ASoC: cs43130: Fix the position of const qualifier Date: Thu, 18 Jan 2024 11:47:37 +0100 Message-ID: <20240118104321.722122067@linuxfoundation.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240118104320.029537060@linuxfoundation.org> References: <20240118104320.029537060@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Maciej Strozek [ Upstream commit e7f289a59e76a5890a57bc27b198f69f175f75d9 ] Signed-off-by: Maciej Strozek Acked-by: Charles Keepax Link: https://lore.kernel.org/r/20231117141344.64320-2-mstrozek@opensource.cirrus.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/codecs/cs43130.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sound/soc/codecs/cs43130.c b/sound/soc/codecs/cs43130.c index 3292405024bc..778a62e57d45 100644 --- a/sound/soc/codecs/cs43130.c +++ b/sound/soc/codecs/cs43130.c @@ -1683,7 +1683,7 @@ static ssize_t hpload_dc_r_show(struct device *dev, return cs43130_show_dc(dev, buf, HP_RIGHT); } -static u16 const cs43130_ac_freq[CS43130_AC_FREQ] = { +static const u16 cs43130_ac_freq[CS43130_AC_FREQ] = { 24, 43, 93, @@ -2363,7 +2363,7 @@ static const struct regmap_config cs43130_regmap = { .use_single_write = true, }; -static u16 const cs43130_dc_threshold[CS43130_DC_THRESHOLD] = { +static const u16 cs43130_dc_threshold[CS43130_DC_THRESHOLD] = { 50, 120, }; -- 2.43.0