Commit e8b05876 authored by Beatriz Martins de Carvalho's avatar Beatriz Martins de Carvalho Committed by Daniel Vetter

drm: drm_atomic_uapi.c: Use tabs for code indents

Remove space and use tabs for indent the code to follow the
Linux kernel coding conventions.
Problem found by checkpatch.
Signed-off-by: default avatarBeatriz Martins de Carvalho <martinsdecarvalhobeatriz@gmail.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/dc8286f5590fff609f924845fb622dd5f962a11b.1618828127.git.martinsdecarvalhobeatriz@gmail.com
parent f0ce78e2
...@@ -78,8 +78,8 @@ int drm_atomic_set_mode_for_crtc(struct drm_crtc_state *state, ...@@ -78,8 +78,8 @@ int drm_atomic_set_mode_for_crtc(struct drm_crtc_state *state,
drm_mode_convert_to_umode(&umode, mode); drm_mode_convert_to_umode(&umode, mode);
state->mode_blob = state->mode_blob =
drm_property_create_blob(state->crtc->dev, drm_property_create_blob(state->crtc->dev,
sizeof(umode), sizeof(umode),
&umode); &umode);
if (IS_ERR(state->mode_blob)) if (IS_ERR(state->mode_blob))
return PTR_ERR(state->mode_blob); return PTR_ERR(state->mode_blob);
...@@ -114,7 +114,7 @@ EXPORT_SYMBOL(drm_atomic_set_mode_for_crtc); ...@@ -114,7 +114,7 @@ EXPORT_SYMBOL(drm_atomic_set_mode_for_crtc);
* Zero on success, error code on failure. Cannot return -EDEADLK. * Zero on success, error code on failure. Cannot return -EDEADLK.
*/ */
int drm_atomic_set_mode_prop_for_crtc(struct drm_crtc_state *state, int drm_atomic_set_mode_prop_for_crtc(struct drm_crtc_state *state,
struct drm_property_blob *blob) struct drm_property_blob *blob)
{ {
struct drm_crtc *crtc = state->crtc; struct drm_crtc *crtc = state->crtc;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment