From patchwork Fri Apr 17 09:21:12 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Jason Yan X-Patchwork-Id: 11494541 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 9FDE715AB for ; Fri, 17 Apr 2020 08:55:13 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 7E30A221E9 for ; Fri, 17 Apr 2020 08:55:13 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="Z2LfVgNM" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 7E30A221E9 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=huawei.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Date:Subject:To :From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=QoTK6yQaGBVd3pOYkyYBUS5wX5bY/3LsmE4k7+92hO4=; b=Z2LfVgNMwQHK+s nI8D+R90tNwHExbip2rqPuK9KZrJAfty7KqciO2HLGhSKDpgMEFo7y63jv9IQRQGB7mjVpQopwPrS pp/UcMcJT/lIIp9lcbaaH57ohg53/f8NWNSEjq/kddxC54azd+OGYvvru0R4BmEt8zhqIkig/QGmA S25Y7QhtZnpV6uEurClyHJ/EGd8R90JNBLFpwpRu8/tI+UtmQbX0HynVgOq4tQ7MsIx6eYwGf5MrA qnUiPpKJnk90HVLIi1GPA1L7K0E6SixRouoW5wGtXO6feraVSLYMgzPditTmUttHorCvt+98tMuuj +VrMMK2dRdj9Kxf0qAxg==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1jPMmC-0001XB-E1; Fri, 17 Apr 2020 08:55:08 +0000 Received: from szxga04-in.huawei.com ([45.249.212.190] helo=huawei.com) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1jPMm8-0000XD-S4 for linux-arm-kernel@lists.infradead.org; Fri, 17 Apr 2020 08:55:06 +0000 Received: from DGGEMS403-HUB.china.huawei.com (unknown [172.30.72.58]) by Forcepoint Email with ESMTP id 858E4286A544F9606FBB; Fri, 17 Apr 2020 16:54:57 +0800 (CST) Received: from huawei.com (10.175.124.28) by DGGEMS403-HUB.china.huawei.com (10.3.19.203) with Microsoft SMTP Server id 14.3.487.0; Fri, 17 Apr 2020 16:54:46 +0800 From: Jason Yan To: , , , , Subject: [PATCH] pinctrl: remove unused 'pwm37_pins' Date: Fri, 17 Apr 2020 17:21:12 +0800 Message-ID: <20200417092112.12303-1-yanaijie@huawei.com> X-Mailer: git-send-email 2.21.1 MIME-Version: 1.0 X-Originating-IP: [10.175.124.28] X-CFilter-Loop: Reflected X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200417_015505_088846_72DEEDEB X-CRM114-Status: UNSURE ( 6.41 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -2.3 (--) X-Spam-Report: SpamAssassin version 3.4.4 on bombadil.infradead.org summary: Content analysis details: (-2.3 points) pts rule name description ---- ---------------------- -------------------------------------------------- -2.3 RCVD_IN_DNSWL_MED RBL: Sender listed at https://www.dnswl.org/, medium trust [45.249.212.190 listed in list.dnswl.org] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Hulk Robot , Jason Yan Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org Fix the following gcc warning: drivers/pinctrl/pinctrl-bm1880.c:263:27: warning: ‘pwm37_pins’ defined but not used [-Wunused-const-variable=] static const unsigned int pwm37_pins[] = { 110 }; ^~~~~~~~~~ Reported-by: Hulk Robot Signed-off-by: Jason Yan --- drivers/pinctrl/pinctrl-bm1880.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/pinctrl/pinctrl-bm1880.c b/drivers/pinctrl/pinctrl-bm1880.c index f7dff4f14101..80bc04f40964 100644 --- a/drivers/pinctrl/pinctrl-bm1880.c +++ b/drivers/pinctrl/pinctrl-bm1880.c @@ -260,7 +260,6 @@ static const unsigned int pwm33_pins[] = { 106 }; static const unsigned int pwm34_pins[] = { 107 }; static const unsigned int pwm35_pins[] = { 108 }; static const unsigned int pwm36_pins[] = { 109 }; -static const unsigned int pwm37_pins[] = { 110 }; static const unsigned int i2c0_pins[] = { 63, 64 }; static const unsigned int i2c1_pins[] = { 65, 66 }; static const unsigned int i2c2_pins[] = { 67, 68 };