From: Muhammad Qasim Abdul Majeed Date: Sun, 4 Aug 2024 12:33:08 +0000 (+0500) Subject: ACPI: AC: Use strscpy() instead of strcpy() X-Git-Tag: v6.12-rc1~218^2^5~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b32c9df02e9e66c575cea20180d734cbbe8ae7b7;p=thirdparty%2Fkernel%2Flinux.git ACPI: AC: Use strscpy() instead of strcpy() Replace strcpy() with strscpy() in the ACPI AC driver. strcpy() has been deprecated because it is generally unsafe, so help to eliminate it from the kernel source. Link: https://github.com/KSPP/linux/issues/88 Signed-off-by: Muhammad Qasim Abdul Majeed Link: https://patch.msgid.link/20240804123313.16211-1-qasim.majeed20@gmail.com [ rjw: Subject and changelog edits ] Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/acpi/ac.c b/drivers/acpi/ac.c index eaa70b23dd0b0..7c5b040a83e8d 100644 --- a/drivers/acpi/ac.c +++ b/drivers/acpi/ac.c @@ -213,8 +213,8 @@ 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); + strscpy(acpi_device_name(adev), ACPI_AC_DEVICE_NAME); + strscpy(acpi_device_class(adev), ACPI_AC_CLASS); platform_set_drvdata(pdev, ac);