mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-25 13:43:55 +08:00
drm/nouveau: fix headless mode
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
0d48b58af3
commit
771fa0e4d0
@ -477,7 +477,7 @@ nouveau_display_create(struct drm_device *dev)
|
||||
drm_kms_helper_poll_init(dev);
|
||||
drm_kms_helper_poll_disable(dev);
|
||||
|
||||
if (drm->vbios.dcb.entries) {
|
||||
if (nouveau_modeset != 2 && drm->vbios.dcb.entries) {
|
||||
static const u16 oclass[] = {
|
||||
GM107_DISP,
|
||||
GK110_DISP,
|
||||
|
@ -306,7 +306,8 @@ static int nouveau_drm_probe(struct pci_dev *pdev,
|
||||
#ifdef CONFIG_X86
|
||||
boot = pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW;
|
||||
#endif
|
||||
remove_conflicting_framebuffers(aper, "nouveaufb", boot);
|
||||
if (nouveau_modeset != 2)
|
||||
remove_conflicting_framebuffers(aper, "nouveaufb", boot);
|
||||
kfree(aper);
|
||||
|
||||
ret = nouveau_device_create(pdev, NOUVEAU_BUS_PCI,
|
||||
|
Loading…
Reference in New Issue
Block a user