Skip to content

Commit c00697b

Browse files
author
Tian Tao
committed
drm/drv: Remove initialization of static variables
Address the following checkpatch errors: ERROR: do not initialise statics to false Signed-off-by: Tian Tao <tiantao6@hisilicon.com> Acked-by: Thomas Zimmermann <tzimmermann@suse.de> Link: https://patchwork.freedesktop.org/patch/msgid/1613701811-32037-1-git-send-email-tiantao6@hisilicon.com
1 parent 0345bae commit c00697b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/drm_drv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ static struct idr drm_minors_idr;
6161
* prefer to embed struct drm_device into their own device
6262
* structure and call drm_dev_init() themselves.
6363
*/
64-
static bool drm_core_init_complete = false;
64+
static bool drm_core_init_complete;
6565

6666
static struct dentry *drm_debugfs_root;
6767

0 commit comments

Comments
 (0)