linux-user: set default PPC64 CPU

The default CPU for pseries has been set to POWER9 by default.
We can use the same default for linux-user

Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20190609143521.19374-2-laurent@vivier.eu>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
Laurent Vivier 2019-06-09 16:35:21 +02:00
parent 24c373ec59
commit b50d1e42a4
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@
static inline const char *cpu_get_model(uint32_t eflags) static inline const char *cpu_get_model(uint32_t eflags)
{ {
#ifdef TARGET_PPC64 #ifdef TARGET_PPC64
return "POWER8"; return "POWER9";
#else #else
return "750"; return "750";
#endif #endif