diff options
author | Rene Bollford <xsecute@googlemail.com> | 2011-10-23 03:56:42 -0400 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2011-10-24 10:52:38 -0400 |
commit | d4afc7754a60b885b63ef23fd194984e2d53a4e6 (patch) | |
tree | fc668ab5e445bf04147f51e760f5ce2967481d1b /drivers/platform | |
parent | 1709adab0773616da7a8190f2762e599afb0a295 (diff) |
[PATCH] ideapad: Check if acpi already handle backlight power to avoid a page fault
This patch avoid a page fault in the ideapad-laptop extras when
turning the backlight power on or off.
Signed-off-by: Rene Bolldorf <xsecute@googlemail.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/ideapad-laptop.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/platform/x86/ideapad-laptop.c b/drivers/platform/x86/ideapad-laptop.c index 0c595410e788..0d94eec00f4d 100644 --- a/drivers/platform/x86/ideapad-laptop.c +++ b/drivers/platform/x86/ideapad-laptop.c | |||
@@ -493,6 +493,8 @@ static void ideapad_backlight_notify_power(struct ideapad_private *priv) | |||
493 | unsigned long power; | 493 | unsigned long power; |
494 | struct backlight_device *blightdev = priv->blightdev; | 494 | struct backlight_device *blightdev = priv->blightdev; |
495 | 495 | ||
496 | if (!blightdev) | ||
497 | return; | ||
496 | if (read_ec_data(ideapad_handle, 0x18, &power)) | 498 | if (read_ec_data(ideapad_handle, 0x18, &power)) |
497 | return; | 499 | return; |
498 | blightdev->props.power = power ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN; | 500 | blightdev->props.power = power ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN; |