diff options
| author | Heinrich Schuchardt <[email protected]> | 2025-11-05 00:39:15 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-11-07 15:34:22 -0600 |
| commit | b9af2d08094cbe785dd5d0018c30912ccd6af23e (patch) | |
| tree | 6da047f394025b81798fd05c356b2a103176a7ef /drivers | |
| parent | 199341908e3559a306d2726f7e33e2703864f0ed (diff) | |
virtio: typo complaint
%s/v1.0 complaint/v1.0 compliant/
Signed-off-by: Heinrich Schuchardt <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/virtio/virtio-uclass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/virtio/virtio-uclass.c b/drivers/virtio/virtio-uclass.c index 1dbc1a56aa2..ac563991b90 100644 --- a/drivers/virtio/virtio-uclass.c +++ b/drivers/virtio/virtio-uclass.c @@ -328,7 +328,7 @@ static int virtio_uclass_child_pre_probe(struct udevice *vdev) debug("(%s): legacy virtio device\n", vdev->name); uc_priv->features = driver_features_legacy & device_features; } else { - debug("(%s): v1.0 complaint virtio device\n", vdev->name); + debug("(%s): v1.0 compliant virtio device\n", vdev->name); uc_priv->features = driver_features & device_features; } |
