From patchwork Tue Nov 7 10:34:17 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lukasz Majewski X-Patchwork-Id: 835218 X-Patchwork-Delegate: sbabic@denx.de 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=) Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3yWQn66vSXz9t31 for ; Tue, 7 Nov 2017 21:35:38 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 4E99BC21E0F; Tue, 7 Nov 2017 10:35:23 +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_H3, RCVD_IN_MSPIKE_WL 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 04210C21E4B; Tue, 7 Nov 2017 10:34:54 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id CF83CC21E4B; Tue, 7 Nov 2017 10:34:49 +0000 (UTC) Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.10]) by lists.denx.de (Postfix) with ESMTPS id D5C7CC21DF4 for ; Tue, 7 Nov 2017 10:34:45 +0000 (UTC) Received: from frontend03.mail.m-online.net (unknown [192.168.6.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3yWQm54wtkz1qyCD; Tue, 7 Nov 2017 11:34:45 +0100 (CET) Received: from localhost (dynscan3.mnet-online.de [192.168.6.84]) by mail.m-online.net (Postfix) with ESMTP id 3yWQm54MRrz1qqlC; Tue, 7 Nov 2017 11:34:45 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.6.182]) by localhost (dynscan3.mail.m-online.net [192.168.6.84]) (amavisd-new, port 10024) with ESMTP id 32V7zU3agxy3; Tue, 7 Nov 2017 11:34:43 +0100 (CET) X-Auth-Info: RsPOk07PNS37xJ3IKa3t/pUN1/dGKgjcgrRMMbgyOcc= Received: from localhost.localdomain (89-64-27-66.dynamic.chello.pl [89.64.27.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPSA; Tue, 7 Nov 2017 11:34:43 +0100 (CET) From: Lukasz Majewski To: u-boot@lists.denx.de Date: Tue, 7 Nov 2017 11:34:17 +0100 Message-Id: <20171107103417.15648-3-lukma@denx.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20171107103417.15648-1-lukma@denx.de> References: <20171107103417.15648-1-lukma@denx.de> Cc: Fabio Estevam Subject: [U-Boot] [PATCH 3/3] imx7: Add include guards for include/asm/arch-mx7/sys_proto.h file 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" Signed-off-by: Lukasz Majewski --- arch/arm/include/asm/arch-mx7/sys_proto.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/arm/include/asm/arch-mx7/sys_proto.h b/arch/arm/include/asm/arch-mx7/sys_proto.h index fa624248b2..cd83662a78 100644 --- a/arch/arm/include/asm/arch-mx7/sys_proto.h +++ b/arch/arm/include/asm/arch-mx7/sys_proto.h @@ -3,8 +3,12 @@ * * SPDX-License-Identifier: GPL-2.0+ */ +#ifndef __SYS_PROTO_IMX7_ +#define __SYS_PROTO_IMX7_ #include void set_wdog_reset(struct wdog_regs *wdog); enum boot_device get_boot_device(void); + +#endif /* __SYS_PROTO_IMX7_ */