summaryrefslogtreecommitdiffstats
path: root/drivers/platform/surface
diff options
context:
space:
mode:
authorMaximilian Luz <luzmaximilian@gmail.com>2022-05-27 04:34:39 +0200
committerHans de Goede <hdegoede@redhat.com>2022-06-13 17:25:08 +0200
commit74bb2d0bc57a1123ef39206051b03d4003673d8c (patch)
treecde1c77775c8a07c01defaff52a5e82b8f14e455 /drivers/platform/surface
parent5c1e88b98c60e4074796e9a05d3c674479ab1919 (diff)
downloadlinux-74bb2d0bc57a1123ef39206051b03d4003673d8c.tar.bz2
platform/surface: aggregator_registry: Use client device wrappers for notifier registration
Use newly introduced client device wrapper functions for notifier registration and unregistration. Signed-off-by: Maximilian Luz <luzmaximilian@gmail.com> Link: https://lore.kernel.org/r/20220527023447.2460025-5-luzmaximilian@gmail.com Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'drivers/platform/surface')
-rw-r--r--drivers/platform/surface/surface_aggregator_registry.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/platform/surface/surface_aggregator_registry.c b/drivers/platform/surface/surface_aggregator_registry.c
index ce2bd88feeaa..9f630e890ff7 100644
--- a/drivers/platform/surface/surface_aggregator_registry.c
+++ b/drivers/platform/surface/surface_aggregator_registry.c
@@ -468,7 +468,7 @@ static int ssam_base_hub_probe(struct ssam_device *sdev)
ssam_device_set_drvdata(sdev, hub);
- status = ssam_notifier_register(sdev->ctrl, &hub->notif);
+ status = ssam_device_notifier_register(sdev, &hub->notif);
if (status)
return status;
@@ -480,7 +480,7 @@ static int ssam_base_hub_probe(struct ssam_device *sdev)
return 0;
err:
- ssam_notifier_unregister(sdev->ctrl, &hub->notif);
+ ssam_device_notifier_unregister(sdev, &hub->notif);
cancel_delayed_work_sync(&hub->update_work);
ssam_remove_clients(&sdev->dev);
return status;
@@ -492,7 +492,7 @@ static void ssam_base_hub_remove(struct ssam_device *sdev)
sysfs_remove_group(&sdev->dev.kobj, &ssam_base_hub_group);
- ssam_notifier_unregister(sdev->ctrl, &hub->notif);
+ ssam_device_notifier_unregister(sdev, &hub->notif);
cancel_delayed_work_sync(&hub->update_work);
ssam_remove_clients(&sdev->dev);
}