From patchwork Wed Mar 21 09:03:35 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 888648 X-Patchwork-Delegate: sjg@chromium.org 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; dmarc=none (p=none dis=none) header.from=socionext.com Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=nifty.com header.i=@nifty.com header.b="V5oUflTE"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 405kSv6PJ4z9s0v for ; Wed, 21 Mar 2018 20:06:55 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 6A5B2C21DB6; Wed, 21 Mar 2018 09:05:14 +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 E7EE1C21DB6; Wed, 21 Mar 2018 09:05:00 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id B61BEC21C29; Wed, 21 Mar 2018 09:04:15 +0000 (UTC) Received: from conuserg-12.nifty.com (conuserg-12.nifty.com [210.131.2.79]) by lists.denx.de (Postfix) with ESMTPS id 5D8BFC21E44 for ; Wed, 21 Mar 2018 09:04:14 +0000 (UTC) Received: from grover.sesame (FL1-125-199-20-195.osk.mesh.ad.jp [125.199.20.195]) (authenticated) by conuserg-12.nifty.com with ESMTP id w2L93irJ027481; Wed, 21 Mar 2018 18:03:46 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-12.nifty.com w2L93irJ027481 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1521623026; bh=1W8P0dfFQESo9it8OwYIJAkyc69taDn/thdDD2GH/XY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=V5oUflTEaJLysxOuWSYAM5HGE0aCi/pKYaJEbWDLf02uDuEgHL0qg32tofnbG0XL4 pGghjM4Xs6TXUb53t8bseOKYhoWfAoCvD+9gqm3+KOT/X8HzTABkoiGUIbpQB/2uZX /sra029OPWwrZCQCDJaMQiBHsVBLqsJrY6ME/sVMt4X1jqBPJZ3svv4PWnnCcVB2z+ aLqz5aAfgrQxFY0frscof9edIq2mbtAQ6XvyVH9xo7/2bt5/hzqQ07ExTYjtWXkEWz /MgUaJpRgwbLCCmOi1H3PCm7X8Rz1or0qSuOdcJmpPR9S3ySOx+RRDXXY3KZU92295 NUCMRjIaok3hg== X-Nifty-SrcIP: [125.199.20.195] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Wed, 21 Mar 2018 18:03:35 +0900 Message-Id: <1521623017-29312-4-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1521623017-29312-1-git-send-email-yamada.masahiro@socionext.com> References: <1521623017-29312-1-git-send-email-yamada.masahiro@socionext.com> Cc: Tom Rini Subject: [U-Boot] [PATCH 3/5] image.h: add forward declaration of struct fdt_region 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 header needs to know 'fdt_region' is a struct for the fit_region_make_list() prototype. Signed-off-by: Masahiro Yamada Reviewed-by: Simon Glass --- include/image.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/image.h b/include/image.h index 621abf6..a6f82ae 100644 --- a/include/image.h +++ b/include/image.h @@ -21,6 +21,7 @@ /* Define this to avoid #ifdefs later on */ struct lmb; +struct fdt_region; #ifdef USE_HOSTCC #include