xen/pvcalls: Remove set but not used variable
authorYueHaibing <yuehaibing@huawei.com>
Sat, 25 May 2019 14:21:51 +0000 (22:21 +0800)
committerBoris Ostrovsky <boris.ostrovsky@oracle.com>
Tue, 28 May 2019 21:32:10 +0000 (17:32 -0400)
commit41349672e3cbc2e8349831f21253509c3415aa2b
tree7d5a32dacde2955085e080ca083bdd584aca232d
parentfe846979d30576107aa9910e1820fec3c20e62d7
xen/pvcalls: Remove set but not used variable

Fixes gcc '-Wunused-but-set-variable' warning:

drivers/xen/pvcalls-front.c: In function pvcalls_front_sendmsg:
drivers/xen/pvcalls-front.c:543:25: warning: variable bedata set but not used [-Wunused-but-set-variable]
drivers/xen/pvcalls-front.c: In function pvcalls_front_recvmsg:
drivers/xen/pvcalls-front.c:638:25: warning: variable bedata set but not used [-Wunused-but-set-variable]

They are never used since introduction.

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
drivers/xen/pvcalls-front.c