From c1cd21db621cb9b626f41d42bd4b8ac2d86709ce Mon Sep 17 00:00:00 2001 From: Lukasz Majewski Date: Wed, 2 May 2018 16:10:51 +0200 Subject: [PATCH] bootcount: Add include guards into bootcount.h file This patch adds missing include guards for bootcount.h file. Signed-off-by: Lukasz Majewski Reviewed-by: Stefan Roese Reviewed-by: Tom Rini Reviewed-by: Alex Kiernan --- include/bootcount.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/bootcount.h b/include/bootcount.h index 3eb8024..c0a6b6e 100644 --- a/include/bootcount.h +++ b/include/bootcount.h @@ -3,6 +3,8 @@ * (C) Copyright 2012 * Stefan Roese, DENX Software Engineering, sr@denx.de. */ +#ifndef _BOOTCOUNT_H__ +#define _BOOTCOUNT_H__ #include #include @@ -37,3 +39,4 @@ static inline u32 raw_bootcount_load(volatile u32 *addr) return in_be32(addr); } #endif +#endif /* _BOOTCOUNT_H__ */