diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2015-09-25 16:06:00 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2015-09-25 16:06:00 +0000 |
commit | 730210fb459fe752d9e069647d1596a27db2dfeb (patch) | |
tree | 5e5c9f60c5d3753c2f243d7e03fee38949f25521 /sys/dev/pci/drm/i915 | |
parent | a50b6c52238cb68121eb679c0dd3ad5b2e3063a4 (diff) |
Disable IPS for now. Identified by jsg@ as the cause for the unsynched
display after waking it from standby or after VT switches. Can't seem to get
him to commit this workaround while he his hunting for a proper fix.
Diffstat (limited to 'sys/dev/pci/drm/i915')
-rw-r--r-- | sys/dev/pci/drm/i915/i915_drv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/drm/i915/i915_drv.c b/sys/dev/pci/drm/i915/i915_drv.c index 05857cdaea6..c8d60dbce80 100644 --- a/sys/dev/pci/drm/i915/i915_drv.c +++ b/sys/dev/pci/drm/i915/i915_drv.c @@ -1,4 +1,4 @@ -/* $OpenBSD: i915_drv.c,v 1.87 2015/09/24 21:31:22 kettenis Exp $ */ +/* $OpenBSD: i915_drv.c,v 1.88 2015/09/25 16:05:59 kettenis Exp $ */ /* * Copyright (c) 2008-2009 Owain G. Ainsworth <oga@openbsd.org> * @@ -158,7 +158,7 @@ module_param_named(disable_power_well, i915_disable_power_well, int, 0600); MODULE_PARM_DESC(disable_power_well, "Disable the power well when possible (default: true)"); -int i915_enable_ips __read_mostly = 1; +int i915_enable_ips __read_mostly = 0; module_param_named(enable_ips, i915_enable_ips, int, 0600); MODULE_PARM_DESC(enable_ips, "Enable IPS (default: true)"); |