Skip to content

Commit ef7357d

Browse files
committed
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>
1 parent 6559c7f commit ef7357d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

drivers/entropy/Kconfig.virtio

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
config ENTROPY_VIRTIO
5-
bool "Driver for VirtIO Entropy device"
5+
bool "Driver for VIRTIO Entropy device"
66
depends on DT_HAS_VIRTIO_DEVICE4_ENABLED
77
depends on VIRTIO
88
select ENTROPY_HAS_DRIVER
99
default y
1010
help
11-
Enable driver for the VirtIO Entropy device.
11+
Enable driver for the VIRTIO Entropy device.

drivers/entropy/entropy_virtio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ static int entropy_virtio_init(const struct device *dev)
9898

9999
k_sem_init(&data->sem, 0, 1);
100100

101-
LOG_DBG("VirtIO entropy driver initialized");
101+
LOG_DBG("virtio entropy driver initialized");
102102
return 0;
103103
}
104104

dts/bindings/rng/virtio,device4.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2025 TOKITA Hiroshi
22
# SPDX-License-Identifier: Apache-2.0
33

4-
description: VirtIO Entropy device (ID:4)
4+
description: VIRTIO Entropy device (ID:4)
55

66
compatible: "virtio,device4"
77

0 commit comments

Comments
 (0)