From patchwork Tue Jun 13 12:58:42 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexandre Belloni X-Patchwork-Id: 9783781 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 5078260325 for ; Tue, 13 Jun 2017 12:59:11 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 42A3428471 for ; Tue, 13 Jun 2017 12:59:11 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 374BE284F6; Tue, 13 Jun 2017 12:59:11 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID autolearn=ham version=3.3.1 Received: from bombadil.infradead.org (bombadil.infradead.org [65.50.211.133]) (using TLSv1.2 with cipher AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id AF7A328471 for ; Tue, 13 Jun 2017 12:59:10 +0000 (UTC) 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:MIME-Version:Cc:List-Subscribe: List-Help:List-Post:List-Archive:List-Unsubscribe:List-Id: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=zwXza2vYjSGQsjiE/TAc4N/CexjtJEELEbsQhQL9trg=; b=YlC QIrLE4zoiuxLIk300fErabXyofphvuOaLdXLpAAP+oufGBgkTqUaQEul/IGjZo9b2E3UxB9Atd913 ybjAOyFHYuGmESJ0QHtIRne1s/Vz84e1x/Iyidfo3WQto1KUZXyKk78+KhXTDkU3hSG1z/Lp+Ef74 iYrMIxuwcDZzgyXhazq9/YLALRDhy1+JMvx1FQBtmwwOFZ+PwU3+5p6QF3vW92CGXHdC6tMFZtCer KQ8OFJxxBbo5qP0SfrO1yZ4dZaPoXjc/Z5NtsRa0mHo/PrapneOx3htye2f7VEFH2CAbrnnwZRRet 8vv6y9N/V0BWo76b59mUliNRNVYea2w==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.87 #1 (Red Hat Linux)) id 1dKlPZ-0000tb-Qb; Tue, 13 Jun 2017 12:59:09 +0000 Received: from mail.free-electrons.com ([62.4.15.54]) by bombadil.infradead.org with esmtp (Exim 4.87 #1 (Red Hat Linux)) id 1dKlPV-0000rw-MN; Tue, 13 Jun 2017 12:59:07 +0000 Received: by mail.free-electrons.com (Postfix, from userid 110) id 8398F21D99; Tue, 13 Jun 2017 14:58:44 +0200 (CEST) Received: from localhost (unknown [88.191.26.124]) by mail.free-electrons.com (Postfix) with ESMTPSA id 5E0D621D5B; Tue, 13 Jun 2017 14:58:44 +0200 (CEST) From: Alexandre Belloni To: Boris Brezillon , Nicolas Ferre Subject: [PATCH] mtd: nand: atmel_nand: drop unused include Date: Tue, 13 Jun 2017 14:58:42 +0200 Message-Id: <20170613125842.16422-1-alexandre.belloni@free-electrons.com> X-Mailer: git-send-email 2.11.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20170613_055905_908871_C74A5E8D X-CRM114-Status: UNSURE ( 8.17 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Richard Weinberger , linux-kernel@vger.kernel.org, Wenyou Yang , Alexandre Belloni , linux-mtd@lists.infradead.org, linux-arm-kernel@lists.infradead.org MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Virus-Scanned: ClamAV using ClamSMTP The Atmel NAND driver doesn't used anything from linux/platform_data/atmel.h, stop including it. Signed-off-by: Alexandre Belloni --- drivers/mtd/nand/atmel/nand-controller.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/mtd/nand/atmel/nand-controller.c b/drivers/mtd/nand/atmel/nand-controller.c index 3b2446896147..6bd61acfc2c8 100644 --- a/drivers/mtd/nand/atmel/nand-controller.c +++ b/drivers/mtd/nand/atmel/nand-controller.c @@ -64,7 +64,6 @@ #include #include #include -#include #include #include "pmecc.h"