The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Alex Davis <alex14641@yahoo.com>
To: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"torvalds@linux-foundation.org" <torvalds@linux-foundation.org>
Subject: [PATCH] i915: Fix bug where screen brightness is not restored
Date: Mon, 14 Nov 2011 18:42:32 -0800 (PST)	[thread overview]
Message-ID: <1321324952.13838.YahooMailNeo@web130105.mail.mud.yahoo.com> (raw)

From: Alex Davis<alex14641@yahoo.com>

This patch fixes an issue where the screen would remain dark when

a key was pressed when the laptop lid was reopened or after the
laptop had gone into power-save mode.

It seems that there are a number of people with different machines
that have this problem:

https://bugs.launchpad.net/ubuntu/+source/linux/+bug/872652
https://launchpad.net/~kamalmostafa/+archive/stuck-backlight
and https://bugs.freedesktop.org/show_bug.cgi?id=41926

This patch is against Linux 3.1

Putting printk's in ./drivers/gpu/drm/i915/intel_panel.c showed that 
intel_get_brightness was being called after the panel was disabled,
which caused a 0 to be saved as the value to restore the brightness. 
intel_panel_disable_backlight merely sets the brightness to 0. Commenting
out this call allows the correct brightness value to be saved.

Signed-off-by: Alex Davis <alex14641@yahoo.com>
Tested-by: Kamal Mostafa <kamal@canonical.com>
-----
diff --git a/drivers/gpu/drm/i915/intel_panel.c b/drivers/gpu/drm/i915/intel_panel.c
index a9e0c7b..6f56676 100644
--- a/drivers/gpu/drm/i915/intel_panel.c
+++ b/drivers/gpu/drm/i915/intel_panel.c
@@ -262,8 +262,6 @@ void intel_panel_disable_backlight(struct drm_device *dev)
                dev_priv->backlight_level = intel_panel_get_backlight(dev);
                dev_priv->backlight_enabled = false;
        }
-
-       intel_panel_set_backlight(dev, 0);
 }

 void intel_panel_enable_backlight(struct drm_device *dev)

 

I code, therefore I am

             reply	other threads:[~2011-11-15  2:42 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-15  2:42 Alex Davis [this message]
2011-11-15 19:58 ` [PATCH] i915: Fix bug where screen brightness is not restored Kamal Mostafa
2011-11-15 20:28   ` [Intel-gfx] " Takashi Iwai
2011-11-15 21:54     ` Kamal Mostafa
2011-11-16  8:01       ` Takashi Iwai

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1321324952.13838.YahooMailNeo@web130105.mail.mud.yahoo.com \
    --to=alex14641@yahoo.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox