[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240705191835.152189-1-thomas.andreatta2000@gmail.com>
Date: Fri, 5 Jul 2024 21:18:35 +0200
From: Thomas Andreatta <thomasandreatta2000@...il.com>
To: rafael@...nel.org
Cc: linux-acpi@...r.kernel.org,
linux-kernel@...r.kernel.org,
Thomas Andreatta <thomas.andreatta2000@...il.com>
Subject: [PATCH] Staging: acpi: fixed a coding style issue moving from strcpy to strscpy.
fixed a coding style issue moving from strcpy to strscpy.
Signed-off-by: Thomas Andreatta <thomas.andreatta2000@...il.com>
---
drivers/acpi/ac.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/acpi/ac.c b/drivers/acpi/ac.c
index 09a87fa222c7..f4b5ba033df8 100644
--- a/drivers/acpi/ac.c
+++ b/drivers/acpi/ac.c
@@ -213,8 +213,11 @@ static int acpi_ac_probe(struct platform_device *pdev)
return -ENOMEM;
ac->device = adev;
- strcpy(acpi_device_name(adev), ACPI_AC_DEVICE_NAME);
- strcpy(acpi_device_class(adev), ACPI_AC_CLASS);
+ char *device_class = acpi_device_class(adev);
+ char *device_name = acpi_device_name(adev);
+
+ strscpy(acpi_device_name(adev), ACPI_AC_DEVICE_NAME, strlen(device_name));
+ strscpy(device_class, ACPI_AC_CLASS, strlen(device_class));
platform_set_drvdata(pdev, ac);
--
2.34.1
Powered by blists - more mailing lists