[RFC PATCH v2 3/4] staging: vt6655: remove redundant assignment

From: Nam Cao
Date: Wed Sep 28 2022 - 13:25:35 EST


In function device_rx_srv, the assignment rd->rd0.owner = OWNED_BY_NIC
is redundant because this is already done in device_alloc_rx_buf() which
is called right above. Remove it.

Signed-off-by: Nam Cao <namcaov@xxxxxxxxx>
---
drivers/staging/vt6655/device_main.c | 1 -
1 file changed, 1 deletion(-)

diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c
index 21d10d9fde47..c8cae6df7f51 100644
--- a/drivers/staging/vt6655/device_main.c
+++ b/drivers/staging/vt6655/device_main.c
@@ -839,7 +839,6 @@ static int device_rx_srv(struct vnt_private *priv, unsigned int idx)
"can not allocate rx buf\n");
break;
}
- rd->rd0.owner = OWNED_BY_NIC;
}

priv->pCurrRD[idx] = rd;
--
2.25.1