Skip to content

Commit

Permalink
Fix naming of L2 cache size item reported for Vortex
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-frbg committed Oct 18, 2020
1 parent f5902ab commit 2e7ee7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpuid_arm64.c
Expand Up @@ -424,7 +424,7 @@ void get_cpuconfig(void)
sysctlbyname("hw.l1dcachesize",&value,&length,NULL,0);
printf("#define L1_DATA_SIZE %d \n",value);
sysctlbyname("hw.l2dcachesize",&value,&length,NULL,0);
printf("#define L2_DATA_SIZE %d \n",value);
printf("#define L2_SIZE %d \n",value);
break;
#endif
}
Expand Down

0 comments on commit 2e7ee7c

Please sign in to comment.