static enum pipe_error
svga_open_channel(struct rpc_channel *channel, unsigned protocol)
{
- VMW_REG ax, bx, cx, dx, si = 0, di = 0;
+ VMW_REG ax = 0, bx = 0, cx = 0, dx = 0, si = 0, di = 0;
VMW_PORT(VMW_PORT_CMD_OPEN_CHANNEL,
(protocol | GUESTMSG_FLAG_COOKIE), si, di,
static enum pipe_error
svga_close_channel(struct rpc_channel *channel)
{
- VMW_REG ax, bx, cx, dx, si, di;
+ VMW_REG ax = 0, bx = 0, cx = 0, dx = 0, si, di;
/* Set up additional parameters */
si = channel->cookie_high;
static enum pipe_error
svga_send_msg(struct rpc_channel *channel, const char *msg)
{
- VMW_REG ax, bx, cx, dx, si, di, bp;
+ VMW_REG ax = 0, bx = 0, cx = 0, dx = 0, si, di, bp;
size_t msg_len = strlen(msg);
int retries = 0;