Skip to content

Commit

Permalink
drm: reduce WARN_ON to a printk.
Browse files Browse the repository at this point in the history
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: Dave Airlie <airlied@redhat.com>
  • Loading branch information
Dave Airlie committed Jan 11, 2010
1 parent 509c7d8 commit 94fd163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/drm_crtc_helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 94fd163

Please sign in to comment.