hv: init: minor fix related to header file

Header file shall not be included multiple times.
The following prototype shall be used.

        #ifndef INIT_H
        #define INIT_H

        /* body */

        #endif /* INIT_H*/

Tracked-On: #861
Signed-off-by: Shiqing Gao <shiqing.gao@intel.com>
This commit is contained in:
Shiqing Gao 2019-01-11 13:42:48 +08:00 committed by wenlingz
parent 0055462237
commit 4b7fe2e215
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#ifndef INIT_H #ifndef INIT_H
#define INIT_H
/* hypervisor stack bottom magic('intl') */ /* hypervisor stack bottom magic('intl') */
#define SP_BOTTOM_MAGIC 0x696e746cUL #define SP_BOTTOM_MAGIC 0x696e746cUL