Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e82dfa00 authored by Chris Wilson's avatar Chris Wilson Committed by Daniel Vetter
Browse files

drm: Reduce verbosity level for drm_core_init() debug message



Currently at the end of drm_core_init() we print

[    0.735185] [drm] Initialized

which does not provide any user information and is only a breadcrumb for
developers, so reduce it from info to debug.

Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161229133729.32673-1-chris@chris-wilson.co.uk
parent 48df6336
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -924,7 +924,7 @@ static int __init drm_core_init(void)
	if (ret < 0)
		goto error;

	DRM_INFO("Initialized\n");
	DRM_DEBUG("Initialized\n");
	return 0;

error: