Subversion Repositories Kolibri OS

Rev

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

Rev 3120 Rev 3243
Line 733... Line 733...
733
void intel_setup_bios(struct drm_device *dev)
733
void intel_setup_bios(struct drm_device *dev)
734
{
734
{
735
	struct drm_i915_private *dev_priv = dev->dev_private;
735
	struct drm_i915_private *dev_priv = dev->dev_private;
Line 736... Line 736...
736
 
736
 
-
 
737
	 /* Set the Panel Power On/Off timings if uninitialized. */
737
	 /* Set the Panel Power On/Off timings if uninitialized. */
738
	if (!HAS_PCH_SPLIT(dev) &&
738
	if ((I915_READ(PP_ON_DELAYS) == 0) && (I915_READ(PP_OFF_DELAYS) == 0)) {
739
	    I915_READ(PP_ON_DELAYS) == 0 && I915_READ(PP_OFF_DELAYS) == 0) {
739
		/* Set T2 to 40ms and T5 to 200ms */
740
		/* Set T2 to 40ms and T5 to 200ms */
Line 740... Line 741...
740
		I915_WRITE(PP_ON_DELAYS, 0x019007d0);
741
		I915_WRITE(PP_ON_DELAYS, 0x019007d0);
741
 
742