From e17243ab029d117a7a76ace9b9bb5337611395ec Mon Sep 17 00:00:00 2001 From: Jan Baisch Date: Wed, 12 Aug 2026 14:52:38 +0200 Subject: [PATCH] platform/surface: aggregator_registry: Add Surface Pro 12 (Intel) Add SAM client device nodes for the Surface Pro 12 (Intel), identified by the MSHW0743 platform-hub ACPI ID. Like the Surface Pro 10 and Surface Pro 11 (Intel), the device uses the same SAM client device layout as the Surface Pro 9, so reuse ssam_node_group_sp9. This enables the Surface Aggregator Module client devices required for the device's platform functionality. Signed-off-by: Jan Baisch Link: https://github.com/linux-surface/kernel/pull/171 Patchset: surface-sam --- drivers/platform/surface/surface_aggregator_registry.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/platform/surface/surface_aggregator_registry.c b/drivers/platform/surface/surface_aggregator_registry.c index 10fe004e4e211..ce09655159a61 100644 --- a/drivers/platform/surface/surface_aggregator_registry.c +++ b/drivers/platform/surface/surface_aggregator_registry.c @@ -433,6 +433,9 @@ static const struct acpi_device_id ssam_platform_hub_acpi_match[] = { /* Surface Pro 11 */ { "MSHW0583", (unsigned long)ssam_node_group_sp9 }, + /* Surface Pro 12 (Intel) */ + { "MSHW0743", (unsigned long)ssam_node_group_sp9 }, + /* Surface Book 2 */ { "MSHW0107", (unsigned long)ssam_node_group_gen5 },