Skip to content

Commit

Permalink
drm/vc4: Ensure zpos is always initialised
Browse files Browse the repository at this point in the history
The compiler is warning that default_zpos can be used
uninitialised as there is no default case to catch all plane
types.
No other plane types should ever be presented to vc4_fkms_plane_init,
but add a default case regardless.

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
  • Loading branch information
6by9 committed Jul 23, 2019
1 parent c345721 commit 451e7cd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/gpu/drm/vc4/vc4_firmware_kms.c
Original file line number Diff line number Diff line change
Expand Up @@ -773,6 +773,7 @@ static struct drm_plane *vc4_fkms_plane_init(struct drm_device *dev,
* other layers as requested by KMS.
*/
switch (type) {
default:
case DRM_PLANE_TYPE_PRIMARY:
default_zpos = 0;
break;
Expand Down

0 comments on commit 451e7cd

Please sign in to comment.