[PATCH v2 02/15] platform/surface: aggregator: Add platform handler pointer to device
From: Mario Limonciello
Date: Sun Oct 27 2024 - 22:02:21 EST
To be able to reference the platform handler in remove, add
a pointer to `struct ssam_device`.
Tested-by: Matthew Schwartz <matthew.schwartz@xxxxxxxxx>
Signed-off-by: Mario Limonciello <mario.limonciello@xxxxxxx>
---
v2:
* Use ssam_device_set_drvdata()
---
drivers/platform/surface/surface_platform_profile.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/platform/surface/surface_platform_profile.c b/drivers/platform/surface/surface_platform_profile.c
index 61aa488a80eb5..a18eb93eebb92 100644
--- a/drivers/platform/surface/surface_platform_profile.c
+++ b/drivers/platform/surface/surface_platform_profile.c
@@ -210,6 +210,7 @@ static int surface_platform_profile_probe(struct ssam_device *sdev)
return -ENOMEM;
tpd->sdev = sdev;
+ ssam_device_set_drvdata(sdev, tpd);
tpd->handler.name = "Surface Platform Profile";
tpd->handler.profile_get = ssam_platform_profile_get;
--
2.43.0