From patchwork Tue Jun 3 16:34:14 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Shiyan X-Patchwork-Id: 4289501 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id CA17EBEEAA for ; Tue, 3 Jun 2014 16:37:23 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4BBFE204DE for ; Tue, 3 Jun 2014 16:37:21 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 5C249203F7 for ; Tue, 3 Jun 2014 16:36:52 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1Wrrfi-0004kz-4L; Tue, 03 Jun 2014 16:34:46 +0000 Received: from smtp13.mail.ru ([94.100.181.94]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1Wrrfe-0004g4-Ry for linux-arm-kernel@lists.infradead.org; Tue, 03 Jun 2014 16:34:43 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mail.ru; s=mail2; h=Message-Id:Date:Subject:Cc:To:From; bh=825z4BmNMaLciU4r423YAUPrWXm+HxDaoWOfeplbCo4=; b=KsT+PtCgTrj2Gfc2gzdFBir4OauuX45IxFicLyl8guN6FF8KNE7c39JSwnAgS8Zw1h0Sb99DU8x8h+2G+IYiUIu6o4CBDYHeRM2T0wURV5evgbAli9I6ajTcitTPj1cGgeV+sixK7lFduQi/dUqZksF7hMCwtqoDlzZDdEq/FOM=; Received: from [5.18.98.7] (port=59066 helo=shc.zet) by smtp13.mail.ru with esmtpa (envelope-from ) id 1WrrfH-0002qW-9o; Tue, 03 Jun 2014 20:34:19 +0400 From: Alexander Shiyan To: linux-gpio@vger.kernel.org Subject: [PATCH RESEND 1/2] pinctrl: i.MX27: Remove unused structure definition Date: Tue, 3 Jun 2014 20:34:14 +0400 Message-Id: <1401813255-7897-1-git-send-email-shc_work@mail.ru> X-Mailer: git-send-email 1.8.5.5 X-Mras: Ok X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20140603_093443_314017_04B79764 X-CRM114-Status: GOOD ( 10.33 ) X-Spam-Score: -0.1 (/) Cc: Sascha Hauer , Linus Walleij , Alexander Shiyan , Shawn Guo , linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-2.4 required=5.0 tests=BAYES_00,DKIM_SIGNED, FREEMAIL_FROM, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP struct imx27_pinctrl_private is not used in the driver. Remove this definition. Signed-off-by: Alexander Shiyan --- drivers/pinctrl/pinctrl-imx27.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/drivers/pinctrl/pinctrl-imx27.c b/drivers/pinctrl/pinctrl-imx27.c index 417c992..27ae7ce 100644 --- a/drivers/pinctrl/pinctrl-imx27.c +++ b/drivers/pinctrl/pinctrl-imx27.c @@ -440,12 +440,6 @@ static struct of_device_id imx27_pinctrl_of_match[] = { { /* sentinel */ } }; -struct imx27_pinctrl_private { - int num_gpio_childs; - struct platform_device **gpio_dev; - struct mxc_gpio_platform_data *gpio_pdata; -}; - static int imx27_pinctrl_probe(struct platform_device *pdev) { return imx1_pinctrl_core_probe(pdev, &imx27_pinctrl_info);