projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eed2890
)
drm/i915: fix guest virtual PCH detection on non-PCH systems
author
Jani Nikula
<
[email protected]
>
Fri, 8 Jun 2018 12:33:26 +0000
(15:33 +0300)
committer
Jani Nikula
<
[email protected]
>
Mon, 11 Jun 2018 07:21:04 +0000
(10:21 +0300)
Virtualized non-PCH systems such as Broxton or Geminilake should use
PCH_NONE to indicate no PCH rather than PCH_NOP. The latter is a
specific case to indicate a PCH system without south display.
Reported-by: Colin Xu <
[email protected]
>
Cc: Colin Xu <
[email protected]
>
Reviewed-by: Ville Syrjälä <
[email protected]
>
Tested-by: Colin Xu <
[email protected]
>
Reviewed-by: Colin Xu <
[email protected]
>
Signed-off-by: Jani Nikula <
[email protected]
>
Link:
https://patchwork.freedesktop.org/patch/msgid/
[email protected]
drivers/gpu/drm/i915/i915_drv.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/i915_drv.c
b/drivers/gpu/drm/i915/i915_drv.c
index 0a1b09bb658fe8c2fe29d403e9d6bd03ad897c41..8f22ae8925fc656d01be3921919a54beee6957c7 100644
(file)
--- a/
drivers/gpu/drm/i915/i915_drv.c
+++ b/
drivers/gpu/drm/i915/i915_drv.c
@@
-289,7
+289,7
@@
static void intel_detect_pch(struct drm_i915_private *dev_priv)
if (WARN_ON(pch_type == PCH_NONE))
pch_type = PCH_NOP;
} else {
- pch_type = PCH_NO
P
;
+ pch_type = PCH_NO
NE
;
}
dev_priv->pch_type = pch_type;
dev_priv->pch_id = id;