[v1.01] Fix Google Tensor SoC matching name

This commit is contained in:
Dr-Noob
2021-12-18 18:47:40 +01:00
parent 27a0c42190
commit 1fab1eefc1

View File

@@ -514,8 +514,8 @@ bool match_special(char* soc_name, struct system_on_chip* soc) {
return true; return true;
} }
// Google Pixel 6 uses this name // Google Pixel 6 (Proably stands for Google Silicon 101)'
if((tmp = strstr(soc_name, "oriole")) != NULL) { if((tmp = strstr(soc_name, "gs101")) != NULL) {
fill_soc(soc, "Tensor", SOC_GOOGLE_TENSOR, 5); fill_soc(soc, "Tensor", SOC_GOOGLE_TENSOR, 5);
return true; return true;
} }