[v0.94] When SoC string is not matched against any SoC is not considered a bug anymore

This commit is contained in:
Dr-Noob
2020-12-08 18:04:13 +01:00
parent 7e532d57a6
commit 2939d5b352

View File

@@ -515,7 +515,7 @@ struct system_on_chip* get_soc() {
soc = guess_soc_from_cpuinfo(soc); soc = guess_soc_from_cpuinfo(soc);
if(soc->soc_vendor == SOC_VENDOR_UNKNOWN) { if(soc->soc_vendor == SOC_VENDOR_UNKNOWN) {
if(soc->raw_name != NULL) if(soc->raw_name != NULL)
printBug("SoC detection failed using /proc/cpuinfo: Found '%s' string", soc->raw_name); printWarn("SoC detection failed using /proc/cpuinfo: Found '%s' string", soc->raw_name);
else else
printWarn("SoC detection failed using /proc/cpuinfo: No string found"); printWarn("SoC detection failed using /proc/cpuinfo: No string found");
#ifdef __ANDROID__ #ifdef __ANDROID__
@@ -523,7 +523,7 @@ struct system_on_chip* get_soc() {
if(soc->raw_name == NULL) if(soc->raw_name == NULL)
printWarn("SoC detection failed using Android: No string found"); printWarn("SoC detection failed using Android: No string found");
else if(soc->soc_vendor == SOC_VENDOR_UNKNOWN) else if(soc->soc_vendor == SOC_VENDOR_UNKNOWN)
printBug("SoC detection failed using Android: Found '%s' string", soc->raw_name); printWarn("SoC detection failed using Android: Found '%s' string", soc->raw_name);
#endif #endif
} }