13 lines
268 B
C
13 lines
268 B
C
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||
|
/*
|
||
|
* Copyright (c) 2021 Loongson Technology Corporation Limited
|
||
|
*/
|
||
|
|
||
|
#ifndef LOONGARCH_TARGET_ELF_H
|
||
|
#define LOONGARCH_TARGET_ELF_H
|
||
|
static inline const char *cpu_get_model(uint32_t eflags)
|
||
|
{
|
||
|
return "la464";
|
||
|
}
|
||
|
#endif
|