mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
05e4d3169b
Drop double underscores from header guards in arch/x86/include. They are used inconsistently, and are not necessary. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
8 lines
214 B
C
8 lines
214 B
C
#ifndef _ASM_X86_XEN_GRANT_TABLE_H
|
|
#define _ASM_X86_XEN_GRANT_TABLE_H
|
|
|
|
#define xen_alloc_vm_area(size) alloc_vm_area(size)
|
|
#define xen_free_vm_area(area) free_vm_area(area)
|
|
|
|
#endif /* _ASM_X86_XEN_GRANT_TABLE_H */
|