xref: /openbmc/qemu/linux-user/riscv/target_elf.h (revision 47ae93cd)
1*47ae93cdSMichael Clark /*
2*47ae93cdSMichael Clark  * This program is free software; you can redistribute it and/or modify
3*47ae93cdSMichael Clark  * it under the terms of the GNU General Public License version 2 as
4*47ae93cdSMichael Clark  * published by the Free Software Foundation, or (at your option) any
5*47ae93cdSMichael Clark  * later version. See the COPYING file in the top-level directory.
6*47ae93cdSMichael Clark  */
7*47ae93cdSMichael Clark 
8*47ae93cdSMichael Clark #ifndef RISCV_TARGET_ELF_H
9*47ae93cdSMichael Clark #define RISCV_TARGET_ELF_H
10*47ae93cdSMichael Clark static inline const char *cpu_get_model(uint32_t eflags)
11*47ae93cdSMichael Clark {
12*47ae93cdSMichael Clark     return "any";
13*47ae93cdSMichael Clark }
14*47ae93cdSMichael Clark #endif
15