xref: /openbmc/qemu/linux-user/riscv/target_elf.h (revision 4d84cc58)
147ae93cdSMichael Clark /*
247ae93cdSMichael Clark  * This program is free software; you can redistribute it and/or modify
347ae93cdSMichael Clark  * it under the terms of the GNU General Public License version 2 as
447ae93cdSMichael Clark  * published by the Free Software Foundation, or (at your option) any
547ae93cdSMichael Clark  * later version. See the COPYING file in the top-level directory.
647ae93cdSMichael Clark  */
747ae93cdSMichael Clark 
847ae93cdSMichael Clark #ifndef RISCV_TARGET_ELF_H
947ae93cdSMichael Clark #define RISCV_TARGET_ELF_H
cpu_get_model(uint32_t eflags)1047ae93cdSMichael Clark static inline const char *cpu_get_model(uint32_t eflags)
1147ae93cdSMichael Clark {
12*4d84cc58SDaniel Henrique Barboza     return "max";
1347ae93cdSMichael Clark }
1447ae93cdSMichael Clark #endif
15