blob: d5a72dd9b499392bc6d9bd7b195f97f970cd1055 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _ASM_POWERPC_IMA_H
#define _ASM_POWERPC_IMA_H
int ima_get_kexec_buffer(void **addr, size_t *size);
int ima_free_kexec_buffer(void);
#ifdef CONFIG_IMA
void remove_ima_buffer(void *fdt, int chosen_node);
#else
static inline void remove_ima_buffer(void *fdt, int chosen_node) {}
#endif
#endif /* _ASM_POWERPC_IMA_H */
|