18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci 38c2ecf20Sopenharmony_ci#ifndef _ASM_VERMAGIC_H 48c2ecf20Sopenharmony_ci#define _ASM_VERMAGIC_H 58c2ecf20Sopenharmony_ci 68c2ecf20Sopenharmony_ci#ifdef CONFIG_CPU_LITTLE_ENDIAN 78c2ecf20Sopenharmony_ci# ifdef CONFIG_CPU_SH2 88c2ecf20Sopenharmony_ci# define MODULE_PROC_FAMILY "SH2LE " 98c2ecf20Sopenharmony_ci# elif defined CONFIG_CPU_SH3 108c2ecf20Sopenharmony_ci# define MODULE_PROC_FAMILY "SH3LE " 118c2ecf20Sopenharmony_ci# elif defined CONFIG_CPU_SH4 128c2ecf20Sopenharmony_ci# define MODULE_PROC_FAMILY "SH4LE " 138c2ecf20Sopenharmony_ci# else 148c2ecf20Sopenharmony_ci# error unknown processor family 158c2ecf20Sopenharmony_ci# endif 168c2ecf20Sopenharmony_ci#else 178c2ecf20Sopenharmony_ci# ifdef CONFIG_CPU_SH2 188c2ecf20Sopenharmony_ci# define MODULE_PROC_FAMILY "SH2BE " 198c2ecf20Sopenharmony_ci# elif defined CONFIG_CPU_SH3 208c2ecf20Sopenharmony_ci# define MODULE_PROC_FAMILY "SH3BE " 218c2ecf20Sopenharmony_ci# elif defined CONFIG_CPU_SH4 228c2ecf20Sopenharmony_ci# define MODULE_PROC_FAMILY "SH4BE " 238c2ecf20Sopenharmony_ci# else 248c2ecf20Sopenharmony_ci# error unknown processor family 258c2ecf20Sopenharmony_ci# endif 268c2ecf20Sopenharmony_ci#endif 278c2ecf20Sopenharmony_ci 288c2ecf20Sopenharmony_ci#define MODULE_ARCH_VERMAGIC MODULE_PROC_FAMILY 298c2ecf20Sopenharmony_ci 308c2ecf20Sopenharmony_ci#endif /* _ASM_VERMAGIC_H */ 31