diff mbox series

[v2,05/12] power/supply: surface_charger: Use client device wrappers for notifier registration

Message ID 20220527023447.2460025-6-luzmaximilian@gmail.com (mailing list archive)
State Mainlined
Commit f80345b89cc5cb61c6c586e6800a66c45261fd74
Headers show
Series platform/surface: aggregator: Add support for client hot-removal | expand

Commit Message

Maximilian Luz May 27, 2022, 2:34 a.m. UTC
Use newly introduced client device wrapper functions for notifier
registration and unregistration.

Signed-off-by: Maximilian Luz <luzmaximilian@gmail.com>
---

Changes in v2:
  - none

---
 drivers/power/supply/surface_charger.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Sebastian Reichel June 9, 2022, 6:01 p.m. UTC | #1
Hi,

On Fri, May 27, 2022 at 04:34:40AM +0200, Maximilian Luz wrote:
> Use newly introduced client device wrapper functions for notifier
> registration and unregistration.
> 
> Signed-off-by: Maximilian Luz <luzmaximilian@gmail.com>

Acked-by: Sebastian Reichel <sebastian.reichel@collabora.com>

-- Sebastian

> ---
> 
> Changes in v2:
>   - none
> 
> ---
>  drivers/power/supply/surface_charger.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/power/supply/surface_charger.c b/drivers/power/supply/surface_charger.c
> index a060c36c7766..59182d55742d 100644
> --- a/drivers/power/supply/surface_charger.c
> +++ b/drivers/power/supply/surface_charger.c
> @@ -216,7 +216,7 @@ static int spwr_ac_register(struct spwr_ac_device *ac)
>  	if (IS_ERR(ac->psy))
>  		return PTR_ERR(ac->psy);
>  
> -	return ssam_notifier_register(ac->sdev->ctrl, &ac->notif);
> +	return ssam_device_notifier_register(ac->sdev, &ac->notif);
>  }
>  
>  
> @@ -251,7 +251,7 @@ static void surface_ac_remove(struct ssam_device *sdev)
>  {
>  	struct spwr_ac_device *ac = ssam_device_get_drvdata(sdev);
>  
> -	ssam_notifier_unregister(sdev->ctrl, &ac->notif);
> +	ssam_device_notifier_unregister(sdev, &ac->notif);
>  }
>  
>  static const struct spwr_psy_properties spwr_psy_props_adp1 = {
> -- 
> 2.36.1
>
diff mbox series

Patch

diff --git a/drivers/power/supply/surface_charger.c b/drivers/power/supply/surface_charger.c
index a060c36c7766..59182d55742d 100644
--- a/drivers/power/supply/surface_charger.c
+++ b/drivers/power/supply/surface_charger.c
@@ -216,7 +216,7 @@  static int spwr_ac_register(struct spwr_ac_device *ac)
 	if (IS_ERR(ac->psy))
 		return PTR_ERR(ac->psy);
 
-	return ssam_notifier_register(ac->sdev->ctrl, &ac->notif);
+	return ssam_device_notifier_register(ac->sdev, &ac->notif);
 }
 
 
@@ -251,7 +251,7 @@  static void surface_ac_remove(struct ssam_device *sdev)
 {
 	struct spwr_ac_device *ac = ssam_device_get_drvdata(sdev);
 
-	ssam_notifier_unregister(sdev->ctrl, &ac->notif);
+	ssam_device_notifier_unregister(sdev, &ac->notif);
 }
 
 static const struct spwr_psy_properties spwr_psy_props_adp1 = {