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 1d03747 commit 026489cCopy full SHA for 026489c
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-3"))
+ if (ffStrbufEqualS(&cpu->name, "SM8750-AC"))
101
+ ffStrbufSetStatic(&cpu->name, "Qualcomm Snapdragon 8 Elite for Galaxy [SM8750-AC]");
102
+ else if (ffStrbufEqualS(&cpu->name, "SM8750-3"))
103
ffStrbufSetStatic(&cpu->name, "Qualcomm Snapdragon 8 Elite [SM8750-3]");
104
else if (ffStrbufEqualS(&cpu->name, "SM8750"))
105
ffStrbufSetStatic(&cpu->name, "Qualcomm Snapdragon 8 Elite [SM8750]");
0 commit comments