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