]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
drm/imx/dcss: fix unused but set variable warnings
authorWang ShaoBo <bobo.shaobowang@huawei.com>
Fri, 11 Sep 2020 01:44:14 +0000 (09:44 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 29 Jul 2022 15:19:24 +0000 (17:19 +0200)
[ Upstream commit 523be44c334bc4e4c014032738dc277b8909d009 ]

Fix unused but set variable warning building with `make W=1`:

drivers/gpu/drm/imx/dcss/dcss-plane.c:270:6: warning:
 variable â€˜pixel_format’ set but not used [-Wunused-but-set-variable]
  u32 pixel_format;
      ^~~~~~~~~~~~

Fixes: 9021c317b770 ("drm/imx: Add initial support for DCSS on iMX8MQ")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wang ShaoBo <bobo.shaobowang@huawei.com>
Reviewed-by: Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Link: https://patchwork.freedesktop.org/patch/msgid/20200911014414.4663-1-bobo.shaobowang@huawei.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/gpu/drm/imx/dcss/dcss-plane.c

index f54087ac44d35b0422f56681b74543b0c4fc9ad9..46a188dd02adc43d871c114945ca4f663a069e56 100644 (file)
@@ -268,7 +268,6 @@ static void dcss_plane_atomic_update(struct drm_plane *plane,
        struct dcss_plane *dcss_plane = to_dcss_plane(plane);
        struct dcss_dev *dcss = plane->dev->dev_private;
        struct drm_framebuffer *fb = state->fb;
-       u32 pixel_format;
        struct drm_crtc_state *crtc_state;
        bool modifiers_present;
        u32 src_w, src_h, dst_w, dst_h;
@@ -279,7 +278,6 @@ static void dcss_plane_atomic_update(struct drm_plane *plane,
        if (!fb || !state->crtc || !state->visible)
                return;
 
-       pixel_format = state->fb->format->format;
        crtc_state = state->crtc->state;
        modifiers_present = !!(fb->flags & DRM_MODE_FB_MODIFIERS);