<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <p><br>
    </p>
    <div class="moz-cite-prefix">On 3/23/2019 8:16 AM, YueHaibing wrote:<br>
    </div>
    <blockquote type="cite"
      cite="mid:20190323024606.163683-1-yuehaibing@huawei.com">
      <pre class="moz-quote-pre" wrap="">Fixes gcc '-Wunused-but-set-variable' warning:

drivers/gpu/drm/vmwgfx/vmwgfx_fb.c: In function 'vmw_fb_init':
drivers/gpu/drm/vmwgfx/vmwgfx_fb.c:645:29: warning:
 variable 'fb_offset' set but not used [-Wunused-but-set-variable]

drivers/gpu/drm/vmwgfx/vmwgfx_fb.c:645:19: warning:
 variable 'fb_depth' set but not used [-Wunused-but-set-variable]

They're not used any more, so can be removed.

Signed-off-by: YueHaibing <a class="moz-txt-link-rfc2396E" href="mailto:yuehaibing@huawei.com"><yuehaibing@huawei.com></a></pre>
    </blockquote>
    <p>
      Reviewed-by: Mukesh Ojha <<a href="mailto:mojha@codeaurora.org"
        title="mojha@codeaurora.org" class="mailto">mojha@codeaurora.org</a>>
    </p>
    <p>
      Thanks.<br>
      Mukesh
    </p>
    <p><br>
    </p>
    <blockquote type="cite"
      cite="mid:20190323024606.163683-1-yuehaibing@huawei.com">
      <pre class="moz-quote-pre" wrap="">
---
 drivers/gpu/drm/vmwgfx/vmwgfx_fb.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c b/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c
index 2a9112515f46..86efb91f5034 100644
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c
@@ -642,12 +642,11 @@ int vmw_fb_init(struct vmw_private *vmw_priv)
        struct vmw_fb_par *par;
        struct fb_info *info;
        unsigned fb_width, fb_height;
-       unsigned fb_bpp, fb_depth, fb_offset, fb_pitch, fb_size;
+       unsigned fb_bpp, fb_pitch, fb_size;
        struct drm_display_mode *init_mode;
        int ret;
 
        fb_bpp = 32;
-       fb_depth = 24;
 
        /* XXX As shouldn't these be as well. */
        fb_width = min(vmw_priv->fb_max_width, (unsigned)2048);
@@ -655,7 +654,6 @@ int vmw_fb_init(struct vmw_private *vmw_priv)
 
        fb_pitch = fb_width * fb_bpp / 8;
        fb_size = fb_pitch * fb_height;
-       fb_offset = vmw_read(vmw_priv, SVGA_REG_FB_OFFSET);
 
        info = framebuffer_alloc(sizeof(*par), device);
        if (!info)



</pre>
    </blockquote>
  </body>
</html>