From patchwork Wed Jul 10 11:07:34 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 1130352 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; 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="PYjEkUnN"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 45kGnK5pF1z9s8m for ; Wed, 10 Jul 2019 21:15:17 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 7CFA6C21ED5; Wed, 10 Jul 2019 11:11:00 +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=RCVD_IN_MSPIKE_H2, 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 EE9D5C21F69; Wed, 10 Jul 2019 11:08:39 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 2C7A6C21F4E; Wed, 10 Jul 2019 11:08:23 +0000 (UTC) Received: from conuserg-07.nifty.com (conuserg-07.nifty.com [210.131.2.74]) by lists.denx.de (Postfix) with ESMTPS id 4FAAEC21F45 for ; Wed, 10 Jul 2019 11:08:22 +0000 (UTC) Received: from localhost.localdomain (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-07.nifty.com with ESMTP id x6AB7tEG000482; Wed, 10 Jul 2019 20:08:00 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-07.nifty.com x6AB7tEG000482 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1562756880; bh=d3Q1xqKiGKu2MyL9nu35JG1Y0WYMkWkae/YNCn9R6YI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=PYjEkUnNT07ktgagQ+5TLo9xNhv9lgWlKxX2p4SN157LIrljqaE1FVZdL0NQiPhOj KiVIH2tM0bcAHvxcYAMg9wjOLjKgKugG/P7o25AfX2vfgynZGvRGO7hpHZ2ibHr6sf vTPlPxHXR92CnHnT/IfLkp6/oY1njewogw04RGuG4ezeVj2DOVMjc/T1xA/rOEdZ0C W2n4rWRnPyvNUIZ+Y3OvkmHO8oeYAAMTADhmEhxtuIzCEmEyPE1lIVugq8BLtxTcNT 9BIlMgnBngg8V+YUROYHXXjNWkQoCJVKcvjU3Q7BC3eI7geIli87HnQHaG9p3UlnU7 Z88byQlW3o4/g== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Wed, 10 Jul 2019 20:07:34 +0900 Message-Id: <20190710110751.7175-6-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190710110751.7175-1-yamada.masahiro@socionext.com> References: <20190710110751.7175-1-yamada.masahiro@socionext.com> Cc: Tom Rini Subject: [U-Boot] [PATCH v2 06/22] ARM: uniphier: include from boot-device.c 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 file calls readl(), so needs to include . Currently, it relies on someone else including it. Signed-off-by: Masahiro Yamada --- arch/arm/mach-uniphier/boot-device/boot-device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-uniphier/boot-device/boot-device.c b/arch/arm/mach-uniphier/boot-device/boot-device.c index c8339dbe1ba8..59302150b89c 100644 --- a/arch/arm/mach-uniphier/boot-device/boot-device.c +++ b/arch/arm/mach-uniphier/boot-device/boot-device.c @@ -7,6 +7,7 @@ #include #include #include +#include #include #include "../init.h"