virtio: sandbox: Fix device features bitfield
The virtio sandbox transport was setting the device features value to the bit index rather than shifting a bit to the right index. Fix this using the bit manipulation macros. Signed-off-by: Andrew Scull <ascull@google.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -160,7 +160,7 @@ static int virtio_sandbox_probe(struct udevice *udev)
|
||||
struct virtio_dev_priv *uc_priv = dev_get_uclass_priv(udev);
|
||||
|
||||
/* fake some information for testing */
|
||||
priv->device_features = VIRTIO_F_VERSION_1;
|
||||
priv->device_features = BIT_ULL(VIRTIO_F_VERSION_1);
|
||||
uc_priv->device = VIRTIO_ID_BLOCK;
|
||||
uc_priv->vendor = ('u' << 24) | ('b' << 16) | ('o' << 8) | 't';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user