forked from pool/xorg-x11-server
20 lines
1.0 KiB
Diff
20 lines
1.0 KiB
Diff
|
diff --git a/hw/xfree86/modes/xf86Crtc.c b/hw/xfree86/modes/xf86Crtc.c
|
||
|
index 69f687b..5aae114 100644
|
||
|
--- a/hw/xfree86/modes/xf86Crtc.c
|
||
|
+++ b/hw/xfree86/modes/xf86Crtc.c
|
||
|
@@ -2365,13 +2365,7 @@ xf86InitialConfiguration (ScrnInfoPtr scrn, Bool canGrow)
|
||
|
|
||
|
xf86CollectEnabledOutputs(scrn, config, enabled);
|
||
|
|
||
|
- if (xf86TargetUserpref(scrn, config, modes, enabled, width, height))
|
||
|
- xf86DrvMsg(i, X_INFO, "Using user preference for initial modes\n");
|
||
|
- else if (xf86TargetPreferred(scrn, config, modes, enabled, width, height))
|
||
|
- xf86DrvMsg(i, X_INFO, "Using exact sizes for initial modes\n");
|
||
|
- else if (xf86TargetAspect(scrn, config, modes, enabled, width, height))
|
||
|
- xf86DrvMsg(i, X_INFO, "Using fuzzy aspect match for initial modes\n");
|
||
|
- else if (xf86TargetFallback(scrn, config, modes, enabled, width, height))
|
||
|
+ if (xf86TargetFallback(scrn, config, modes, enabled, width, height))
|
||
|
xf86DrvMsg(i, X_INFO, "Using sloppy heuristic for initial modes\n");
|
||
|
else
|
||
|
xf86DrvMsg(i, X_WARNING, "Unable to find initial modes\n");
|