linux-leds.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] leds: as3645a: Replace strlcpy with strscpy
@ 2023-05-24 14:48 Azeem Shaikh
  2023-05-25 11:44 ` Lee Jones
  0 siblings, 1 reply; 2+ messages in thread
From: Azeem Shaikh @ 2023-05-24 14:48 UTC (permalink / raw)
  To: Sakari Ailus
  Cc: linux-hardening, Azeem Shaikh, linux-leds, linux-kernel,
	Pavel Machek, Lee Jones

Part of a tree-wide effort to remove deprecated strlcpy()[1] and replace
it with strscpy()[2]. No return values were used, so direct replacement
is safe.

[1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy
[2] https://github.com/KSPP/linux/issues/89

Signed-off-by: Azeem Shaikh <azeemshaikh38@gmail.com>
---
v1: https://lore.kernel.org/all/20230523021150.2406032-1-azeemshaikh38@gmail.com/

Changes in v2:
 - Updated subject and commit log.
 
 drivers/leds/flash/leds-as3645a.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/leds/flash/leds-as3645a.c b/drivers/leds/flash/leds-as3645a.c
index bb2249771acb..7dc574b18f5f 100644
--- a/drivers/leds/flash/leds-as3645a.c
+++ b/drivers/leds/flash/leds-as3645a.c
@@ -651,8 +651,8 @@ static int as3645a_v4l2_setup(struct as3645a *flash)
 		},
 	};
 
-	strlcpy(cfg.dev_name, led->dev->kobj.name, sizeof(cfg.dev_name));
-	strlcpy(cfgind.dev_name, flash->iled_cdev.dev->kobj.name,
+	strscpy(cfg.dev_name, led->dev->kobj.name, sizeof(cfg.dev_name));
+	strscpy(cfgind.dev_name, flash->iled_cdev.dev->kobj.name,
 		sizeof(cfgind.dev_name));
 
 	flash->vf = v4l2_flash_init(
-- 
2.40.1.698.g37aff9b760-goog



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] leds: as3645a: Replace strlcpy with strscpy
  2023-05-24 14:48 [PATCH v2] leds: as3645a: Replace strlcpy with strscpy Azeem Shaikh
@ 2023-05-25 11:44 ` Lee Jones
  0 siblings, 0 replies; 2+ messages in thread
From: Lee Jones @ 2023-05-25 11:44 UTC (permalink / raw)
  To: Azeem Shaikh
  Cc: Sakari Ailus, linux-hardening, linux-leds, linux-kernel, Pavel Machek

On Wed, 24 May 2023, Azeem Shaikh wrote:

> Part of a tree-wide effort to remove deprecated strlcpy()[1] and replace
> it with strscpy()[2]. No return values were used, so direct replacement
> is safe.
> 
> [1] https://www.kernel.org/doc/html/latest/process/deprecated.html#strlcpy
> [2] https://github.com/KSPP/linux/issues/89
> 
> Signed-off-by: Azeem Shaikh <azeemshaikh38@gmail.com>
> ---
> v1: https://lore.kernel.org/all/20230523021150.2406032-1-azeemshaikh38@gmail.com/
> 
> Changes in v2:
>  - Updated subject and commit log.
>  
>  drivers/leds/flash/leds-as3645a.c |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Applied, thanks

-- 
Lee Jones [李琼斯]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-05-25 11:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-24 14:48 [PATCH v2] leds: as3645a: Replace strlcpy with strscpy Azeem Shaikh
2023-05-25 11:44 ` Lee Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).