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

Commit 94fd163d authored by Dave Airlie's avatar Dave Airlie
Browse files

drm: reduce WARN_ON to a printk.



Lots of ppl keep thinking this is an oops, it was just a warning for
me to see, just make it a printk now.

Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 509c7d83
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1032,7 +1032,7 @@ bool drm_helper_initial_config(struct drm_device *dev)
	/*
	 * we shouldn't end up with no modes here.
	 */
	WARN(!count, "No connectors reported connected with modes\n");
	printk(KERN_INFO "No connectors reported conncted with modes\n");

	drm_setup_crtcs(dev);