Skip to content

Commit

Permalink
Merge pull request #26 from alkorgh/master
Browse files Browse the repository at this point in the history
Update support.c (correct definition of SSC30K)
  • Loading branch information
wberube authored Jan 1, 2025
2 parents 84c58da + 6fbd2e2 commit a52f428
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 a52f428

Please sign in to comment.