summaryrefslogtreecommitdiffstats
path: root/runtime/autoconf-tsc-khz.c
blob: f60bf6d098efdd685ab704432f03249d9780f558 (plain)
1
2
3
4
5
6
7
#include <linux/version.h>
#include <asm/tsc.h>

#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23))
#error "tsc_khz is not exported"
#endif
unsigned int *ptsc = &tsc_khz;