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:
parent
0a2b92c21f
commit
3720c9b805
3 changed files with 4 additions and 4 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue