mirror of
https://github.com/torvalds/linux.git
synced 2024-11-30 16:11:38 +00:00
habanalabs: use strscpy instead of sprintf and strlcpy
Prefer the use of strscpy when copying the ASIC name into a char array, to prevent accidentally exceeding the array's length. In addition, strlcpy is frowned upon so replace it. Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
This commit is contained in:
parent
131d1ba130
commit
ae382c22fc
@ -321,11 +321,11 @@ static int device_early_init(struct hl_device *hdev)
|
||||
switch (hdev->asic_type) {
|
||||
case ASIC_GOYA:
|
||||
goya_set_asic_funcs(hdev);
|
||||
strlcpy(hdev->asic_name, "GOYA", sizeof(hdev->asic_name));
|
||||
strscpy(hdev->asic_name, "GOYA", sizeof(hdev->asic_name));
|
||||
break;
|
||||
case ASIC_GAUDI:
|
||||
gaudi_set_asic_funcs(hdev);
|
||||
sprintf(hdev->asic_name, "GAUDI");
|
||||
strscpy(hdev->asic_name, "GAUDI", sizeof(hdev->asic_name));
|
||||
break;
|
||||
default:
|
||||
dev_err(hdev->dev, "Unrecognized ASIC type %d\n",
|
||||
|
Loading…
Reference in New Issue
Block a user