xref: /openbmc/qemu/linux-user/loongarch64/target_elf.h (revision 1437479e5ee1a49ccd84cad9e7b010fb2ee9d805)
1*3418fe25SSong Gao /* SPDX-License-Identifier: GPL-2.0-or-later */
2*3418fe25SSong Gao /*
3*3418fe25SSong Gao  * Copyright (c) 2021 Loongson Technology Corporation Limited
4*3418fe25SSong Gao  */
5*3418fe25SSong Gao 
6*3418fe25SSong Gao #ifndef LOONGARCH_TARGET_ELF_H
7*3418fe25SSong Gao #define LOONGARCH_TARGET_ELF_H
cpu_get_model(uint32_t eflags)8*3418fe25SSong Gao static inline const char *cpu_get_model(uint32_t eflags)
9*3418fe25SSong Gao {
10*3418fe25SSong Gao     return "la464";
11*3418fe25SSong Gao }
12*3418fe25SSong Gao #endif
13