In mISDN/drivers/isdn/mISDN/octvqe/octvqe_liniux.c a timestamp is used that uses the call in line 534
pChan->ulTimestampIn = (unsigned long)rdtsc();
rdtsc however is the reading of an Intel architecture specific time register that does not exist in other CPU architectures.
Tried to compile this for an ARM based platform and only could get there by removing these calls (am not using octvqe anyway).