mirror of
https://github.com/apache/nuttx.git
synced 2025-01-12 20:58:44 +08:00
drivers/vhost: fix compile error while get vhost status.
vhost/vhost.c: In function 'vhost_status_driver_ok': vhost/vhost.c:86:20: error: too few arguments to function 'virtio_get_status' 86 | uint8_t status = vhost_get_status(hdev); Signed-off-by: rongyichang <rongyichang@xiaomi.com>
This commit is contained in:
parent
ff488133c9
commit
ee2f3df2ff
1 changed files with 8 additions and 1 deletions
|
@ -83,8 +83,15 @@ static struct vhost_bus_s g_vhost_bus =
|
||||||
|
|
||||||
static bool vhost_status_driver_ok(FAR struct vhost_device *hdev)
|
static bool vhost_status_driver_ok(FAR struct vhost_device *hdev)
|
||||||
{
|
{
|
||||||
uint8_t status = vhost_get_status(hdev);
|
|
||||||
bool driver_ok = false;
|
bool driver_ok = false;
|
||||||
|
uint8_t status;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = vhost_get_status(hdev, &status);
|
||||||
|
if (ret)
|
||||||
|
{
|
||||||
|
return driver_ok;
|
||||||
|
}
|
||||||
|
|
||||||
/* Busy wait until the remote is ready */
|
/* Busy wait until the remote is ready */
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue