platform/x86: thinkpad_acpi: Use 2-argument strscpy()

Use 2-argument strscpy(), which is not only shorter but also provides
an additional check that destination buffer is an array.

Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Link: https://lore.kernel.org/r/20240602090244.1666360-7-andy.shevchenko@gmail.com
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
This commit is contained in:
Andy Shevchenko 2024-06-02 11:57:59 +03:00 committed by Ilpo Järvinen
parent 31edc07e4f
commit 4894c364d5
No known key found for this signature in database
GPG Key ID: 59AC4F6153E5CE31

View File

@ -7416,10 +7416,8 @@ static int __init volume_create_alsa_mixer(void)
data = card->private_data;
data->card = card;
strscpy(card->driver, TPACPI_ALSA_DRVNAME,
sizeof(card->driver));
strscpy(card->shortname, TPACPI_ALSA_SHRTNAME,
sizeof(card->shortname));
strscpy(card->driver, TPACPI_ALSA_DRVNAME);
strscpy(card->shortname, TPACPI_ALSA_SHRTNAME);
snprintf(card->mixername, sizeof(card->mixername), "ThinkPad EC %s",
(thinkpad_id.ec_version_str) ?
thinkpad_id.ec_version_str : "(unknown)");