diff options
author | Muhammad Qasim Abdul Majeed <[email protected]> | 2024-07-06 13:11:03 +0500 |
---|---|---|
committer | Rafael J. Wysocki <[email protected]> | 2024-08-02 16:17:51 +0200 |
commit | 142acc42a7443f377b1a452ce906dc3adec91f70 (patch) | |
tree | 992f280fce68fc082e7860c3192a3fa615270920 | |
parent | 8400291e289ee6b2bf9779ff1c83a291501f017b (diff) |
ACPI: battery: Use strscpy() instead of strcpy()
Replace strcpy() with strscpy() in the ACPI battery driver.
strcpy() has been deprecated because it is generally unsafe, so help to
eliminate if from the kernel source.
Link: https://github.com/KSPP/linux/issues/88
Signed-off-by: Muhammad Qasim Abdul Majeed <[email protected]>
Link: https://patch.msgid.link/[email protected]
[ rjw: Subject and changelog edits ]
Signed-off-by: Rafael J. Wysocki <[email protected]>
-rw-r--r-- | drivers/acpi/battery.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/battery.c b/drivers/acpi/battery.c index da3a879d638a..857d4ef38469 100644 --- a/drivers/acpi/battery.c +++ b/drivers/acpi/battery.c @@ -1219,8 +1219,8 @@ static int acpi_battery_add(struct acpi_device *device) if (!battery) return -ENOMEM; battery->device = device; - strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME); - strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS); + strscpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME); + strscpy(acpi_device_class(device), ACPI_BATTERY_CLASS); device->driver_data = battery; mutex_init(&battery->lock); mutex_init(&battery->sysfs_lock); |