Subversion Repositories Kolibri OS

Rev

Rev 6084 | Rev 6660 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6084 Rev 6320
Line 506... Line 506...
506
				WARN_ON(!IS_SKYLAKE(dev));
506
				WARN_ON(!IS_SKYLAKE(dev));
507
			} else if (id == INTEL_PCH_SPT_LP_DEVICE_ID_TYPE) {
507
			} else if (id == INTEL_PCH_SPT_LP_DEVICE_ID_TYPE) {
508
				dev_priv->pch_type = PCH_SPT;
508
				dev_priv->pch_type = PCH_SPT;
509
				DRM_DEBUG_KMS("Found SunrisePoint LP PCH\n");
509
				DRM_DEBUG_KMS("Found SunrisePoint LP PCH\n");
510
				WARN_ON(!IS_SKYLAKE(dev));
510
				WARN_ON(!IS_SKYLAKE(dev));
511
			} else if (id == INTEL_PCH_P2X_DEVICE_ID_TYPE) {
511
			} else if ((id == INTEL_PCH_P2X_DEVICE_ID_TYPE) ||
-
 
512
				   ((id == INTEL_PCH_QEMU_DEVICE_ID_TYPE) &&
-
 
513
				    pch->subsystem_vendor == 0x1af4 &&
-
 
514
				    pch->subsystem_device == 0x1100)) {
512
				dev_priv->pch_type = intel_virt_detect_pch(dev);
515
				dev_priv->pch_type = intel_virt_detect_pch(dev);
513
			} else
516
			} else
514
				continue;
517
				continue;
Line 515... Line 518...
515
 
518