We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c693e5a commit d4c7b53Copy full SHA for d4c7b53
src/detection/cpu/cpu_linux.c
@@ -89,7 +89,9 @@ static void detectQualcomm(FFCPUResult* cpu)
89
{
90
// https://en.wikipedia.org/wiki/List_of_Qualcomm_Snapdragon_systems_on_chips
91
92
- if (ffStrbufEqualS(&cpu->name, "SM8635"))
+ if (ffStrbufEqualS(&cpu->name, "SM8750"))
93
+ ffStrbufSetStatic(&cpu->name, "Qualcomm Snapdragon 8 Elite [SM8750]");
94
+ else if (ffStrbufEqualS(&cpu->name, "SM8635"))
95
ffStrbufSetStatic(&cpu->name, "Qualcomm Snapdragon 8s Gen 3 [SM8635]");
96
else if (ffStrbufEqualS(&cpu->name, "SM8650-AC"))
97
ffStrbufSetStatic(&cpu->name, "Qualcomm Snapdragon 8 Gen 3 for Galaxy [SM8650-AC]");
0 commit comments