Hi,
> @@ -4795,7 +4796,8 @@ NTSTATUS QxlDevice::HWClose(void)
> {
> PAGED_CODE();
> QxlClose();
> -if (m_bUefiMode)
> +/* QXL device rev 5+ requires explicit reset to switch to VGA mode */
> +if (m_bUefiMode || m_pQxlDod->Revision() > 4)
> {
> DbgPrint(TRACE_
>
> Hi,
>
> > @@ -4795,7 +4796,8 @@ NTSTATUS QxlDevice::HWClose(void)
> > {
> > PAGED_CODE();
> > QxlClose();
> > -if (m_bUefiMode)
> > +/* QXL device rev 5+ requires explicit reset to switch to VGA mode */
> > +if (m_bUefiMode || m_pQxlDod->Revision() > 4)
> > {
> >
On Mon, Jul 13, 2020 at 12:12 PM Frediano Ziglio wrote:
> >
> > Hi,
> >
> > > @@ -4795,7 +4796,8 @@ NTSTATUS QxlDevice::HWClose(void)
> > > {
> > > PAGED_CODE();
> > > QxlClose();
> > > -if (m_bUefiMode)
> > > +/* QXL device rev 5+ requires explicit reset to switch to VGA
> mod