From patchwork Thu Nov 30 04:45:25 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 842875 X-Patchwork-Delegate: yamada.m@jp.panasonic.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=nifty.com header.i=@nifty.com header.b="LAddvLCJ"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3ynPx83R1zz9sMN for ; Thu, 30 Nov 2017 15:46:04 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 2DAE0C21E9B; Thu, 30 Nov 2017 04:45:58 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id C922FC21DBB; Thu, 30 Nov 2017 04:45:56 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 50363C21DBB; Thu, 30 Nov 2017 04:45:55 +0000 (UTC) Received: from conuserg-07.nifty.com (conuserg-07.nifty.com [210.131.2.74]) by lists.denx.de (Postfix) with ESMTPS id 31E0DC21DB5 for ; Thu, 30 Nov 2017 04:45:53 +0000 (UTC) Received: from pug.e01.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-07.nifty.com with ESMTP id vAU4jfH0011804; Thu, 30 Nov 2017 13:45:43 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-07.nifty.com vAU4jfH0011804 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1512017143; bh=MXMZt1iMdWjtnmGd8mPDurpVJOwmaAvl6iFWKd7/taU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=LAddvLCJKNj+fmkyIWHdskHLkXF8exIIsx5iDJzlCE/rXBoKNRCJnPH5r3keGGF8v 0zoQCc8fMngSyqt1aQXQ1cifMgSO6pMzg80py1Cfiopf1nfZlPpwQc8YOlp+bPb886 /8CS14JV5EutkXCsqRtksUgZubF7s7xr3hvfMiKwRvguRCpsNBqPn+5U6LYBAKC2Ub rvvP9ZYY7g22iyXjnuKvyWoCVFf0tfoY3QnvyfNsuGQZwr7vcb2rQVOOeMrLpPNYpB sNajVX+JSy7jJAE2oCqK1HLSVgytMZ18CqldmqWzGqGFoCu6UpuZMhrVhYmNVD7aIh DD4hnJUvxaTLw== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Thu, 30 Nov 2017 13:45:25 +0900 Message-Id: <1512017127-10986-2-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1512017127-10986-1-git-send-email-yamada.masahiro@socionext.com> References: <1512017127-10986-1-git-send-email-yamada.masahiro@socionext.com> Cc: Marek Vasut , Scott Wood Subject: [U-Boot] [PATCH 2/4] mtd: nand: include from include/linux/mtd/rawnand.h X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" This is needed for ARCH_DMA_MINALIGN. Signed-off-by: Masahiro Yamada --- include/linux/mtd/rawnand.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/mtd/rawnand.h b/include/linux/mtd/rawnand.h index 192709b..6c3e838 100644 --- a/include/linux/mtd/rawnand.h +++ b/include/linux/mtd/rawnand.h @@ -20,6 +20,7 @@ #include #include #include +#include struct mtd_info; struct nand_flash_dev;