From nobody Mon Sep 29 20:17:08 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id ABA09C25B08 for ; Mon, 15 Aug 2022 22:48:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1350654AbiHOWsV (ORCPT ); Mon, 15 Aug 2022 18:48:21 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60006 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1351776AbiHOWqn (ORCPT ); Mon, 15 Aug 2022 18:46:43 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 773CE13422B; Mon, 15 Aug 2022 12:52:46 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 784A061178; Mon, 15 Aug 2022 19:52:46 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 697A4C433C1; Mon, 15 Aug 2022 19:52:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1660593165; bh=2nSJYS2SJ8h0PWkngDu10ZIh+24L5ysWN8ONbY7NjPk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=W4hx8p7lATAjdC6OatVqZ2qIK6KEB3hRLSYNS/mIKiclJsj/3oFA3Fvdq6MyX8X9F Hzte6QeP7IwmYR6h/VE73K98HG9UxLPwmC+Do8RX9D5WjpUhNQaSgPETdYyvcWONgf gR7njjMB6v8UrxrRcyguNSBMWek1FMybY3dHkYAM= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Krzysztof Kozlowski , Mark Brown , Sasha Levin Subject: [PATCH 5.19 0224/1157] spi: s3c64xx: constify fsd_spi_port_config Date: Mon, 15 Aug 2022 19:53:00 +0200 Message-Id: <20220815180448.547996085@linuxfoundation.org> X-Mailer: git-send-email 2.37.2 In-Reply-To: <20220815180439.416659447@linuxfoundation.org> References: <20220815180439.416659447@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Krzysztof Kozlowski [ Upstream commit a813c47d22b0a0c51567292bc198a39bdcdc3799 ] All struct s3c64xx_spi_port_config should be const. Fixes: 4ebb15a15799 ("spi: s3c64xx: Add spi port configuration for Tesla FS= D SoC") Signed-off-by: Krzysztof Kozlowski Link: https://lore.kernel.org/r/20220627094541.95166-1-krzysztof.kozlowski@= linaro.org Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- drivers/spi/spi-s3c64xx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c index c26440e9058d..8fa21afc6a35 100644 --- a/drivers/spi/spi-s3c64xx.c +++ b/drivers/spi/spi-s3c64xx.c @@ -1413,7 +1413,7 @@ static const struct s3c64xx_spi_port_config exynos543= 3_spi_port_config =3D { .quirks =3D S3C64XX_SPI_QUIRK_CS_AUTO, }; =20 -static struct s3c64xx_spi_port_config fsd_spi_port_config =3D { +static const struct s3c64xx_spi_port_config fsd_spi_port_config =3D { .fifo_lvl_mask =3D { 0x7f, 0x7f, 0x7f, 0x7f, 0x7f}, .rx_lvl_offset =3D 15, .tx_st_done =3D 25, --=20 2.35.1