From 2939d5b352efe2c0ae323b70310d43cc246729ec Mon Sep 17 00:00:00 2001 From: Dr-Noob Date: Tue, 8 Dec 2020 18:04:13 +0100 Subject: [PATCH] [v0.94] When SoC string is not matched against any SoC is not considered a bug anymore --- src/arm/soc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arm/soc.c b/src/arm/soc.c index 57aae20..c3e1673 100644 --- a/src/arm/soc.c +++ b/src/arm/soc.c @@ -515,7 +515,7 @@ struct system_on_chip* get_soc() { soc = guess_soc_from_cpuinfo(soc); if(soc->soc_vendor == SOC_VENDOR_UNKNOWN) { 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 printWarn("SoC detection failed using /proc/cpuinfo: No string found"); #ifdef __ANDROID__ @@ -523,7 +523,7 @@ struct system_on_chip* get_soc() { if(soc->raw_name == NULL) printWarn("SoC detection failed using Android: No string found"); 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 }