Skip to content

Commit

Permalink
gpu: drm: imx: convert comma to semicolon
Browse files Browse the repository at this point in the history
Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <[email protected]>
Signed-off-by: Philipp Zabel <[email protected]>
  • Loading branch information
Zheng Yongjun authored and pH5 committed Jan 4, 2021
1 parent ccce5ea commit c2d789f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/imx/parallel-display.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ static int imx_pd_connector_get_modes(struct drm_connector *connector)
return ret;

drm_mode_copy(mode, &imxpd->mode);
mode->type |= DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED,
mode->type |= DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED;
drm_mode_probed_add(connector, mode);
num_modes++;
}
Expand Down

0 comments on commit c2d789f

Please sign in to comment.