backlight: backlight: Fix doc for backlight_device_get_by_name
authorMiaoqian Lin <linmq006@gmail.com>
Thu, 15 Dec 2022 07:19:01 +0000 (11:19 +0400)
committerLee Jones <lee@kernel.org>
Wed, 22 Feb 2023 10:53:26 +0000 (10:53 +0000)
backlight_put() has been dropped, we should call put_device() to drop
the reference taken by backlight_device_get_by_name().

Fixes: 0f6a3256fd81 ("backlight: backlight: Drop backlight_put()")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
Signed-off-by: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221215071902.424005-1-linmq006@gmail.com
drivers/video/backlight/backlight.c

index b788ff3d0f45ea0c1cd751a01b83762ad53a69d0..6eea72aa8dbff6982bc9767deb8ef4d811d11be8 100644 (file)
@@ -501,7 +501,7 @@ EXPORT_SYMBOL(backlight_device_get_by_type);
  *
  * This function looks up a backlight device by its name. It obtains a reference
  * on the backlight device and it is the caller's responsibility to drop the
- * reference by calling backlight_put().
+ * reference by calling put_device().
  *
  * Returns:
  * A pointer to the backlight device if found, otherwise NULL.