From patchwork Tue Mar 23 13:17:13 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 12157857 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-19.2 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id AF19FC433E1 for ; Tue, 23 Mar 2021 13:19:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6F6D8619CF for ; Tue, 23 Mar 2021 13:19:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231707AbhCWNSv (ORCPT ); Tue, 23 Mar 2021 09:18:51 -0400 Received: from mail.kernel.org ([198.145.29.99]:46386 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231678AbhCWNRf (ORCPT ); Tue, 23 Mar 2021 09:17:35 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id CD58F61878; Tue, 23 Mar 2021 13:17:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1616505453; bh=TocmTDObLsSB+Yh5zIiipz/rUfcK3KL/UJieKC8e3Ow=; h=From:To:Cc:Subject:Date:From; b=SsbsLhMz68mlEer2lsktyESY96JxLwfKkZZ6b0E2e+nUZCQHphTlUzJk2o3L2Pm6a PA0bt2gTn9Z8x36hW1X62PpElRsh5LzIkonM2qx5j4RFhFYDpmXtojADiwlVTri+qO Jsg5TrRMmqD8868jgS+ujK1Ms+de7gohfV1vortEtZVIfGIST8O3AWk0LSfuKBLo01 QR3I4gQrA9Bc26MYUpQ/Xwwa4MMbu+5piHOZ9atxGSoAruNzR5e1L14e0dG/kkxM3m EVuf8gt+OZm2R7DYW29O1eFQdCSCeKvfgzDAePGN1XZ0R3S23brQmZQYqjarvO/H+z EBJ0ZgbZU7sTg== From: Arnd Bergmann To: Bjorn Andersson , Andy Gross , Linus Walleij , Nathan Chancellor , Nick Desaulniers , Jeevan Shriram , Manivannan Sadhasivam , Vinod Koul Cc: Arnd Bergmann , linux-arm-msm@vger.kernel.org, linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org, clang-built-linux@googlegroups.com Subject: [PATCH] pinctrl: qcom: fix unintentional string concatenation Date: Tue, 23 Mar 2021 14:17:13 +0100 Message-Id: <20210323131728.2702789-1-arnd@kernel.org> X-Mailer: git-send-email 2.29.2 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org From: Arnd Bergmann clang is clearly correct to point out a typo in a silly array of strings: drivers/pinctrl/qcom/pinctrl-sdx55.c:426:61: error: suspicious concatenation of string literals in an array initialization; did you mean to separate the elements with a comma? [-Werror,-Wstring-concatenation] "gpio14", "gpio15", "gpio16", "gpio17", "gpio18", "gpio19" "gpio20", "gpio21", "gpio22", ^ Add the missing comma that must have accidentally been removed. Fixes: ac43c44a7a37 ("pinctrl: qcom: Add SDX55 pincontrol driver") Signed-off-by: Arnd Bergmann Reviewed-by: Bjorn Andersson Reviewed-by: Nathan Chancellor --- drivers/pinctrl/qcom/pinctrl-sdx55.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pinctrl/qcom/pinctrl-sdx55.c b/drivers/pinctrl/qcom/pinctrl-sdx55.c index 2b5b0e2b03ad..5aaf57b40407 100644 --- a/drivers/pinctrl/qcom/pinctrl-sdx55.c +++ b/drivers/pinctrl/qcom/pinctrl-sdx55.c @@ -423,7 +423,7 @@ static const char * const gpio_groups[] = { static const char * const qdss_stm_groups[] = { "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7", "gpio12", "gpio13", - "gpio14", "gpio15", "gpio16", "gpio17", "gpio18", "gpio19" "gpio20", "gpio21", "gpio22", + "gpio14", "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21", "gpio22", "gpio23", "gpio44", "gpio45", "gpio52", "gpio53", "gpio56", "gpio57", "gpio61", "gpio62", "gpio63", "gpio64", "gpio65", "gpio66", };