Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ACPI: SBS: Use strscpy() instead of strcpy()

Replace strcpy() with strscpy() in the ACPI SBS driver.

strcpy() has been deprecated because it is generally unsafe, so it
is better to eliminate it from the kernel source.

Link: https://github.com/KSPP/linux/issues/88
Signed-off-by: Muhammad Qasim Abdul Majeed <qasim.majeed20@gmail.com>
Link: https://patch.msgid.link/20240915183822.34588-7-qasim.majeed20@gmail.com
[ rjw: Subject and changelog edits ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

authored by

Muhammad Qasim Abdul Majeed and committed by
Rafael J. Wysocki
c4ff125e 04c2d3a9

+2 -2
+2 -2
drivers/acpi/sbs.c
··· 644 644 645 645 sbs->hc = acpi_driver_data(acpi_dev_parent(device)); 646 646 sbs->device = device; 647 - strcpy(acpi_device_name(device), ACPI_SBS_DEVICE_NAME); 648 - strcpy(acpi_device_class(device), ACPI_SBS_CLASS); 647 + strscpy(acpi_device_name(device), ACPI_SBS_DEVICE_NAME); 648 + strscpy(acpi_device_class(device), ACPI_SBS_CLASS); 649 649 device->driver_data = sbs; 650 650 651 651 result = acpi_charger_add(sbs);