mirror of https://gitee.com/openkylin/linux.git
15 lines
222 B
C
15 lines
222 B
C
|
#ifndef _ASM_EFI_H
|
||
|
#define _ASM_EFI_H
|
||
|
|
||
|
#include <asm/io.h>
|
||
|
|
||
|
#ifdef CONFIG_EFI
|
||
|
extern void efi_init(void);
|
||
|
extern void efi_idmap_init(void);
|
||
|
#else
|
||
|
#define efi_init()
|
||
|
#define efi_idmap_init()
|
||
|
#endif
|
||
|
|
||
|
#endif /* _ASM_EFI_H */
|