We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64ad6d6 commit 829f5a6Copy full SHA for 829f5a6
arch/x86/events/intel/uncore_snb.c
@@ -1906,9 +1906,17 @@ static struct intel_uncore_type *ptl_uncores[UNCORE_PTL_MAX_NUM_UNCORE_TYPES] =
1906
[UNCORE_PTL_TYPE_HBO] = &ptl_uncore_hbo,
1907
};
1908
1909
+#define UNCORE_PTL_MMIO_EXTRA_UNCORES 1
1910
+
1911
+static struct intel_uncore_type *ptl_mmio_extra_uncores[UNCORE_PTL_MMIO_EXTRA_UNCORES] = {
1912
+ &adl_uncore_imc_free_running,
1913
+};
1914
1915
void ptl_uncore_mmio_init(void)
1916
{
- uncore_mmio_uncores = uncore_get_uncores(UNCORE_ACCESS_MMIO, 0, NULL,
1917
+ uncore_mmio_uncores = uncore_get_uncores(UNCORE_ACCESS_MMIO,
1918
+ UNCORE_PTL_MMIO_EXTRA_UNCORES,
1919
+ ptl_mmio_extra_uncores,
1920
UNCORE_PTL_MAX_NUM_UNCORE_TYPES,
1921
ptl_uncores);
1922
}
0 commit comments