CLOCK_HZ
divisor = CLOCK_HZ/hz;
clk_timecounter.tc_frequency = CLOCK_HZ;
if ((stathz == 0) || (stathz > hz) || (CLOCK_HZ % stathz))
if ((profhz == 0) || (profhz > (hz << 1)) || (CLOCK_HZ % profhz))
MFP->mf_tcdr = CLOCK_HZ/stathz; /* Set divisor */
statmin = (CLOCK_HZ/stathz) - (statvar >> 1);
profmin = (CLOCK_HZ/profhz) - (statvar >> 1);
.tc_frequency = CLOCK_HZ,