1 #ifndef _ASM_POWERPC_ASM_PROTOTYPES_H 2 #define _ASM_POWERPC_ASM_PROTOTYPES_H 3 /* 4 * This file is for prototypes of C functions that are only called 5 * from asm, and any associated variables. 6 * 7 * Copyright 2016, Daniel Axtens, IBM Corporation. 8 * 9 * This program is free software; you can redistribute it and/or 10 * modify it under the terms of the GNU General Public License 11 * as published by the Free Software Foundation; either version 2 12 * of the License, or (at your option) any later version. 13 */ 14 15 /* Patch sites */ 16 extern s32 patch__call_flush_count_cache; 17 extern s32 patch__flush_count_cache_return; 18 extern s32 patch__flush_link_stack_return; 19 extern s32 patch__call_kvm_flush_link_stack; 20 21 extern long flush_count_cache; 22 extern long kvm_flush_link_stack; 23 24 #endif /* _ASM_POWERPC_ASM_PROTOTYPES_H */ 25