diff options
author | Simon Glass | 2020-12-19 10:40:10 -0700 |
---|---|---|
committer | Simon Glass | 2021-01-05 12:24:41 -0700 |
commit | 73466df3e214f6ff1966e69df351f273eec1a029 (patch) | |
tree | 75fc6fcb0fccdc942c810fd4b44efc50e1845175 /include/virtio.h | |
parent | 2462139fdd4f1f5eb50427e287a802b9c9eef097 (diff) |
dm: core: Access device flags through functions
At present flags are stored as part of the device. In preparation for
storing them separately, change the access to go through inline functions.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/virtio.h')
-rw-r--r-- | include/virtio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/virtio.h b/include/virtio.h index 10a9c073ba1..a42bdad6b87 100644 --- a/include/virtio.h +++ b/include/virtio.h @@ -492,7 +492,7 @@ static inline void __virtio_clear_bit(struct udevice *udev, unsigned int fbit) */ static inline bool virtio_has_feature(struct udevice *vdev, unsigned int fbit) { - if (!(vdev->flags & DM_FLAG_BOUND)) + if (!(dev_get_flags(vdev) & DM_FLAG_BOUND)) WARN_ON(true); return __virtio_test_bit(vdev->parent, fbit); |