diff mbox series

[next] drm: Fix space indentations, replace with tabs

Message ID 20210721221148.18127-1-colin.king@canonical.com (mailing list archive)
State New, archived
Headers show
Series [next] drm: Fix space indentations, replace with tabs | expand

Commit Message

Colin King July 21, 2021, 10:11 p.m. UTC
From: Colin Ian King <colin.king@canonical.com>

A couple of statements are indented with spaces, clean this up
by replacing spaces with tabs.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/gpu/drm/drm_ioctl.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/drivers/gpu/drm/drm_ioctl.c b/drivers/gpu/drm/drm_ioctl.c
index f454e0424086..c023da67ca7a 100644
--- a/drivers/gpu/drm/drm_ioctl.c
+++ b/drivers/gpu/drm/drm_ioctl.c
@@ -834,8 +834,8 @@  long drm_ioctl(struct file *filp,
 	if (drm_dev_is_unplugged(dev))
 		return -ENODEV;
 
-       if (DRM_IOCTL_TYPE(cmd) != DRM_IOCTL_BASE)
-               return -ENOTTY;
+	if (DRM_IOCTL_TYPE(cmd) != DRM_IOCTL_BASE)
+		return -ENOTTY;
 
 	is_driver_ioctl = nr >= DRM_COMMAND_BASE && nr < DRM_COMMAND_END;