sections.h 494 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _PARISC_SECTIONS_H
  3. #define _PARISC_SECTIONS_H
  4. /* nothing to see, move along */
  5. #include <asm-generic/sections.h>
  6. extern char __alt_instructions[], __alt_instructions_end[];
  7. #ifdef CONFIG_64BIT
  8. #define HAVE_DEREFERENCE_FUNCTION_DESCRIPTOR 1
  9. #undef dereference_function_descriptor
  10. void *dereference_function_descriptor(void *);
  11. #undef dereference_kernel_function_descriptor
  12. void *dereference_kernel_function_descriptor(void *);
  13. #endif
  14. #endif