[PATCH 2/2] xfree86: Fix initial output setup printout

Julien Cristau jcristau at debian.org
Tue May 20 12:55:07 PDT 2014


On Thu, Jun  2, 2011 at 14:48:09 -0400, Adam Jackson wrote:

> @@ -2489,6 +2478,19 @@ xf86InitialConfiguration (ScrnInfoPtr scrn, Bool canGrow)
>  	}
>      }
>  
> +    for (o = 0; o < config->num_output; o++)
> +    {
> +       xf86OutputPtr output = config->output[o];
> +       if (!output->crtc)
> +           xf86DrvMsg (scrn->scrnIndex, X_INFO, "Output %s disabled\n",
> +                       output->name);
> +       else
> +           xf86DrvMsg (scrn->scrnIndex, X_INFO,
> +                       "Output %s using initial mode %s +%d+%d\n",
> +                       output->name, output->crtc->desiredMode.name,
> +                       output->crtc->desiredX, output->crtc->desiredY);
> +    }
> +
>      if (scrn->display->virtualX == 0)
>      {
>  	/*
Is this going to log

Output VGA1 disabled
Output HDMI1 disabled
Output DP1 disabled
Output HDMI2 disabled
Output HDMI3 disabled
Output DP2 disabled
Output DP3 disabled

right after 

Output VGA1 disconnected
Output HDMI1 disconnected
Output DP1 disconnected
Output HDMI2 disconnected
Output HDMI3 disconnected
Output DP2 disconnected
Output DP3 disconnected

?

Maybe a bit too much?

Cheers,
Julien


More information about the xorg-devel mailing list