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 35d431d commit 1f5e56cCopy full SHA for 1f5e56c
src/detection/cpu/cpu_linux.c
@@ -97,7 +97,9 @@ static void detectQualcomm(FFCPUResult* cpu)
97
{
98
// https://en.wikipedia.org/wiki/List_of_Qualcomm_Snapdragon_systems_on_chips
99
100
- if (ffStrbufEqualS(&cpu->name, "SM8750"))
+ if (ffStrbufEqualS(&cpu->name, "SM8750-3"))
101
+ ffStrbufSetStatic(&cpu->name, "Qualcomm Snapdragon 8 Elite [SM8750-3]");
102
+ else if (ffStrbufEqualS(&cpu->name, "SM8750"))
103
ffStrbufSetStatic(&cpu->name, "Qualcomm Snapdragon 8 Elite [SM8750]");
104
else if (ffStrbufEqualS(&cpu->name, "SM8635"))
105
ffStrbufSetStatic(&cpu->name, "Qualcomm Snapdragon 8s Gen 3 [SM8635]");
0 commit comments