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

Commit aa91c666 authored by Dave Airlie's avatar Dave Airlie Committed by Dave Airlie
Browse files

drm: pick an 800x600@60HZ mode by default for unknown CRT.



This is what X picks now, so we should do the same.

Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 60fd99e3
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -34,12 +34,12 @@
#include "drm_crtc_helper.h"

/*
 * Detailed mode info for a standard 640x480@60Hz monitor
 * Detailed mode info for 800x600@60Hz
 */
static struct drm_display_mode std_mode[] = {
	{ DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 25200, 640, 656,
		   752, 800, 0, 480, 490, 492, 525, 0,
		   DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC) },
	{ DRM_MODE("800x600", DRM_MODE_TYPE_DEFAULT, 40000, 800, 840,
		   968, 1056, 0, 600, 601, 605, 628, 0,
		   DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
};

/**