drivers: entropy: virtio: Unify the notation to VIRTIO

Since `VirtIO` is not the official notation,
unify the name to `VIRTIO`.
In the text, `Virtio` and `virtio` can also be used
depending on the context.

Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
This commit is contained in:
TOKITA Hiroshi 2025-06-05 17:02:01 +09:00 committed by Fabio Baltieri
commit 3720c9b805
3 changed files with 4 additions and 4 deletions

View file

@ -2,10 +2,10 @@
# SPDX-License-Identifier: Apache-2.0
config ENTROPY_VIRTIO
bool "Driver for VirtIO Entropy device"
bool "Driver for VIRTIO Entropy device"
depends on DT_HAS_VIRTIO_DEVICE4_ENABLED
depends on VIRTIO
select ENTROPY_HAS_DRIVER
default y
help
Enable driver for the VirtIO Entropy device.
Enable driver for the VIRTIO Entropy device.

View file

@ -98,7 +98,7 @@ static int entropy_virtio_init(const struct device *dev)
k_sem_init(&data->sem, 0, 1);
LOG_DBG("VirtIO entropy driver initialized");
LOG_DBG("virtio entropy driver initialized");
return 0;
}

View file

@ -1,7 +1,7 @@
# Copyright (c) 2025 TOKITA Hiroshi
# SPDX-License-Identifier: Apache-2.0
description: VirtIO Entropy device (ID:4)
description: VIRTIO Entropy device (ID:4)
compatible: "virtio,device4"