Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

platform/surface: aggregator_registry: Add DTX device

Add the detachment system (DTX) SSAM device for the Surface Book 3. This
device is accessible under the base (TC=0x11) subsystem.

Signed-off-by: Maximilian Luz <luzmaximilian@gmail.com>
Link: https://lore.kernel.org/r/20210212115439.1525216-6-luzmaximilian@gmail.com
Signed-off-by: Hans de Goede <hdegoede@redhat.com>

authored by

Maximilian Luz and committed by
Hans de Goede
f68aaf85 7b5ee8d0

+7
+7
drivers/platform/surface/surface_aggregator_registry.c
··· 71 71 .parent = &ssam_node_root, 72 72 }; 73 73 74 + /* DTX / detachment-system device (Surface Book 3). */ 75 + static const struct software_node ssam_node_bas_dtx = { 76 + .name = "ssam:01:11:01:00:00", 77 + .parent = &ssam_node_root, 78 + }; 79 + 74 80 /* Devices for Surface Book 2. */ 75 81 static const struct software_node *ssam_node_group_sb2[] = { 76 82 &ssam_node_root, ··· 92 86 &ssam_node_bat_main, 93 87 &ssam_node_bat_sb3base, 94 88 &ssam_node_tmp_pprof, 89 + &ssam_node_bas_dtx, 95 90 NULL, 96 91 }; 97 92