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:
parent
0055462237
commit
4b7fe2e215
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue