]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
drm/komeda: remove set but not used variable 'kcrtc'
authorYueHaibing <yuehaibing@huawei.com>
Fri, 26 Apr 2019 16:42:02 +0000 (00:42 +0800)
committerLiviu Dudau <Liviu.Dudau@arm.com>
Thu, 6 Jun 2019 07:59:41 +0000 (08:59 +0100)
Fixes gcc '-Wunused-but-set-variable' warning:

drivers/gpu/drm/arm/display/komeda/komeda_plane.c: In function komeda_plane_atomic_check:
drivers/gpu/drm/arm/display/komeda/komeda_plane.c:49:22: warning: variable kcrtc set but not used [-Wunused-but-set-variable]

It is never used since introduction in
commit 9e5603094176 ("drm/komeda: Add komeda_plane/plane_helper_funcs")

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Reviewed-by: James Qian Wang (Arm Technology China) <james.qian.wang@arm.com>
Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>
drivers/gpu/drm/arm/display/komeda/komeda_plane.c

index 07ed0cc1bc4459f1e433ab467365f936c8358635..0753892b98d276c566f37fa07600abe4711cd815 100644 (file)
@@ -55,7 +55,6 @@ komeda_plane_atomic_check(struct drm_plane *plane,
        struct komeda_plane_state *kplane_st = to_kplane_st(state);
        struct komeda_layer *layer = kplane->layer;
        struct drm_crtc_state *crtc_st;
-       struct komeda_crtc *kcrtc;
        struct komeda_crtc_state *kcrtc_st;
        struct komeda_data_flow_cfg dflow;
        int err;
@@ -73,7 +72,6 @@ komeda_plane_atomic_check(struct drm_plane *plane,
        if (!crtc_st->active)
                return 0;
 
-       kcrtc = to_kcrtc(state->crtc);
        kcrtc_st = to_kcrtc_st(crtc_st);
 
        err = komeda_plane_init_data_flow(state, &dflow);