Browse Source
Merge pull request #3630 from martin-frbg/fixpr3629
Fix compilation of cpuid_riscv
tags/v0.3.21
Martin Kroeker
GitHub
3 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
cpuid_riscv64.c
|
|
|
@@ -100,7 +100,7 @@ int detect(void){ |
|
|
|
|
|
|
|
fclose(infile); |
|
|
|
|
|
|
|
if (strstr(pmodel, check_c910_str) && strchr(p, 'v')) |
|
|
|
if (strstr(pmodel, check_c910_str) && strchr(pisa, 'v')) |
|
|
|
return CPU_C910V; |
|
|
|
|
|
|
|
return CPU_GENERIC; |
|
|
|
|