Skip to content

Commit

Permalink
Merge pull request #4 from alkorgh/alkorgh-patch-SSC30K-identify
Browse files Browse the repository at this point in the history
Update support.c (correct definition of SSC30K)
  • Loading branch information
alkorgh authored Jan 1, 2025
2 parents c5f2ce8 + c5bb86a commit 77d768c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hal/support.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void hal_identify(void) {
if (package[2] == 'A')
strcpy(chip, "SSC33[8/9]G");
else {
if (sysconf(_SC_NPROCESSORS_CONF) == 1)
if (sysconf(_SC_NPROCESSORS_ONLN) == 1)
strcpy(chip, "SSC30K");
else
strcpy(chip, "SSC33[6/8]");
Expand Down

0 comments on commit 77d768c

Please sign in to comment.