From nobody Sun Apr 19 20:38:43 2026 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 CCA6DC433EF for ; Mon, 27 Jun 2022 09:45:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233868AbiF0Jpx (ORCPT ); Mon, 27 Jun 2022 05:45:53 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36562 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233771AbiF0Jpr (ORCPT ); Mon, 27 Jun 2022 05:45:47 -0400 Received: from mail-ej1-x635.google.com (mail-ej1-x635.google.com [IPv6:2a00:1450:4864:20::635]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BA96A6396 for ; Mon, 27 Jun 2022 02:45:45 -0700 (PDT) Received: by mail-ej1-x635.google.com with SMTP id cw10so17959729ejb.3 for ; Mon, 27 Jun 2022 02:45:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=WOM4uBpjoRyrBuD75f9zY98ri1MNJqUrdS279t95jyI=; b=HtwfbijywEnyhZiyXyHDF8ZyRkA/74CcMliWnKNk1HA3ZYUhGS+qDoC7zLO5JE+sb7 XjbtB2e1Vf9sLcwW1CV4eTD/uHg0AVPCk+5R9DDAt5sLv0jnRkfV1xgE0RM8mdSx3IUF aLtwEPG3wBYfFtxX8fz9xbqXcJAWkamtqf0S9kcvzq5u98nYfdHGyeMSpX1Ta/8THjEC 907BS8+vNC7iJcX020no7Bj+ogBziY+MLVywrvXamFvx0nUsbhtZ5cXLqXM83FmzubHl o/S61Oe9x9yCMZTqImukOJQ6fw/LQbkJ5V7s1EK2yqTNE7S5EtDgI7nesmPLP5OfZzUr Ckkg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=WOM4uBpjoRyrBuD75f9zY98ri1MNJqUrdS279t95jyI=; b=HK77OLnNyl0J/FpNRiQEP1yf4mSUFbOTKRyQeUwA+8S0t9ZxOaY1S21LPHtAU9T5Cg EwECgXozgC6LrnmRpN1fsE81u+55BcR3sRfI0Cp/sOcpHf5He/u+poDy5uGaC25wepZQ 6j5a7B2DCb7grR0bjZaOD/wvPDri10UumyJOCMrG/T/JoxONvk6KDKX4c12aIKcBk8zH wl3+7Le+s8Gm4eOgR2S+rjpBr29BOpcwEr4JDaPkuDQK4FlqeCeiIMsUfVHwSaFi7JIP KuGlFRGDa2HyUlKY/IuYib2idnT+zBkAL9ouvZrVpb6t9hyi1MJHr96zj51VSaEd41DR WPew== X-Gm-Message-State: AJIora9IOOPWOtufm/ue1MS5qSiQNxxnYXWLDa6udFNo+FVH+hiil/MQ J43WXAjF7YsC5/5vMLpFL6FzRA== X-Google-Smtp-Source: AGRyM1tXAXrzh2lfaT89gjC9w/IEcbCwI5549GpsimLV4qylK/qfZfxq1Hk84cBf/Vhl8eQGtJtfMw== X-Received: by 2002:a17:907:1c01:b0:6f4:2692:e23 with SMTP id nc1-20020a1709071c0100b006f426920e23mr11631366ejc.243.1656323144363; Mon, 27 Jun 2022 02:45:44 -0700 (PDT) Received: from localhost.localdomain (xdsl-188-155-176-92.adslplus.ch. [188.155.176.92]) by smtp.gmail.com with ESMTPSA id f26-20020a056402005a00b004358f6e0570sm7223331edu.17.2022.06.27.02.45.43 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 27 Jun 2022 02:45:43 -0700 (PDT) From: Krzysztof Kozlowski To: Krzysztof Kozlowski , Andi Shyti , Mark Brown , Alim Akhtar , Aswani Reddy , linux-spi@vger.kernel.org, linux-samsung-soc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: Chanho Park Subject: [PATCH] spi: s3c64xx: constify fsd_spi_port_config Date: Mon, 27 Jun 2022 11:45:41 +0200 Message-Id: <20220627094541.95166-1-krzysztof.kozlowski@linaro.org> X-Mailer: git-send-email 2.34.1 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" 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 --- 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 819b660dae82..499c56dd875e 100644 --- a/drivers/spi/spi-s3c64xx.c +++ b/drivers/spi/spi-s3c64xx.c @@ -1421,7 +1421,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.34.1