Message ID | 20200527180541.5570-3-guennadi.liakhovetski@linux.intel.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | Add a vhost RPMsg API | expand |
diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c index 2f4383bb..2b9ad8a 100644 --- a/drivers/vhost/vhost.c +++ b/drivers/vhost/vhost.c @@ -895,7 +895,7 @@ static inline void __user *__vhost_get_user(struct vhost_virtqueue *vq, #define vhost_put_user(vq, x, ptr) \ ({ \ - int ret = -EFAULT; \ + int ret; \ if (!vq->iotlb) { \ ret = __put_user(x, ptr); \ } else { \
Even the compiler is able to figure out that in this case the initialisation is superfluous. Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com> --- drivers/vhost/vhost.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)