setup.h 458 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Copyright (C) 2011 Tobias Klauser <[email protected]>
  4. */
  5. #ifndef _ASM_NIOS2_SETUP_H
  6. #define _ASM_NIOS2_SETUP_H
  7. #include <asm-generic/setup.h>
  8. #ifndef __ASSEMBLY__
  9. #ifdef __KERNEL__
  10. extern char exception_handler_hook[];
  11. extern char fast_handler[];
  12. extern char fast_handler_end[];
  13. extern void pagetable_init(void);
  14. #endif/* __KERNEL__ */
  15. #endif /* __ASSEMBLY__ */
  16. #endif /* _ASM_NIOS2_SETUP_H */