From: Simon Glass Date: Tue, 28 Mar 2017 16:27:17 +0000 (-0600) Subject: board_f: initcall: Add a header guard X-Git-Tag: v2017.05-rc2~115 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2d986c0f54fba2b0e25898976d8ceb16a78ad8cb;p=u-boot board_f: initcall: Add a header guard This file is missing the usual header guard. Add it. Signed-off-by: Simon Glass --- diff --git a/include/initcall.h b/include/initcall.h index 65f67dca83..fe7e90388e 100644 --- a/include/initcall.h +++ b/include/initcall.h @@ -4,6 +4,11 @@ * SPDX-License-Identifier: GPL-2.0+ */ +#ifndef __INITCALL_H +#define __INITCALL_H + typedef int (*init_fnc_t)(void); int initcall_run_list(const init_fnc_t init_sequence[]); + +#endif