Rémi Bernon (@rbernon) commented about programs/wineboot/wineboot.c:
freq = (freq0 + freq1) / 2;
TRACE( "TSC frequency calibration complete, found %I64u Hz\n", freq );
- }
- return freq;
+}
#else
static void initialize_xstate_features(struct _KUSER_SHARED_DATA *data) { }
+static UINT64 read_tsc_frequency(void) +{
- return 0;
I actually meant something like `FIXME("TSC frequency calibration not implemented\n");` here, but it doesn't matter very much.
LGTM otherwise, thanks!