diff options
author | Alan Cox <alan@linux.intel.com> | 2011-11-29 23:26:58 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-12-06 10:55:37 +0100 |
commit | 1f0d0b5183c8dd4d58678e8ba35553cabaf87390 (patch) | |
tree | 39627a64a010a1057097113be1298301f861edcf /drivers/gpu/drm/gma500/power.c | |
parent | gma500: kill bogus code (diff) | |
download | linux-1f0d0b5183c8dd4d58678e8ba35553cabaf87390.tar.xz linux-1f0d0b5183c8dd4d58678e8ba35553cabaf87390.zip |
gma500: Fix backlight crash
Initial changes to get backlight behaviour we want and to fix backlight crashes
on suspend/resume paths.
[Note: on some boxes this will now produce a warning about the backlight, this
isn't a regression it's an unfixed but non harmful case I still need to nail]
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/gma500/power.c')
-rw-r--r-- | drivers/gpu/drm/gma500/power.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/gma500/power.c b/drivers/gpu/drm/gma500/power.c index 972bea7c1af2..94025693bae1 100644 --- a/drivers/gpu/drm/gma500/power.c +++ b/drivers/gpu/drm/gma500/power.c @@ -302,7 +302,7 @@ int psb_runtime_suspend(struct device *dev) int psb_runtime_resume(struct device *dev) { - return 0; + return gma_power_resume(dev);; } int psb_runtime_idle(struct device *dev) |