Skip to content

Commit

Permalink
[v1.06][ARM] Fix for commit 025e28c
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-Noob committed Aug 24, 2024
1 parent 4037412 commit af8bb16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arm/soc.c
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ struct system_on_chip* guess_soc_from_android(struct system_on_chip* soc) {
char tmp[100];
int property_len = 0;

property_len = android_property_get(ANDROID_PROP_MTK_PLATFORM, (char *) &tmp);
property_len = android_property_get(PROP_MTK_PLATFORM, (char *) &tmp);
if(property_len > 0) {
try_parse_soc_from_string(soc, property_len, tmp);
if(soc->vendor == SOC_VENDOR_UNKNOWN) printWarn("SoC detection failed using Android property %s: %s", PROP_MTK_PLATFORM, tmp);
Expand Down

0 comments on commit af8bb16

Please sign in to comment.