diff options
author | Matthew Garrett <mjg@redhat.com> | 2012-06-01 15:18:52 -0400 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2012-06-01 15:18:52 -0400 |
commit | a2f01a899347fd97cb18094e5a55640cab552818 (patch) | |
tree | 1800404cf4f08346a036f5d780530a87471bc47d /drivers/platform | |
parent | a6c2390cd6d2083d27a2359658e08f2d3df375ac (diff) |
apple-gmux: Fix up the suspend/resume patch
I incorporated the wrong version of the suspend/resume patch for gmux,
and so lost David Woodhouse's fix to leave the backlight level unchanged
over suspend/resume. This fixes it up to v2.
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/apple-gmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/apple-gmux.c b/drivers/platform/x86/apple-gmux.c index 6dcef4f199bb..694a15a56230 100644 --- a/drivers/platform/x86/apple-gmux.c +++ b/drivers/platform/x86/apple-gmux.c | |||
@@ -88,7 +88,7 @@ static int gmux_update_status(struct backlight_device *bd) | |||
88 | u32 brightness = bd->props.brightness; | 88 | u32 brightness = bd->props.brightness; |
89 | 89 | ||
90 | if (bd->props.state & BL_CORE_SUSPENDED) | 90 | if (bd->props.state & BL_CORE_SUSPENDED) |
91 | brightness = 0; | 91 | return 0; |
92 | 92 | ||
93 | /* | 93 | /* |
94 | * Older gmux versions require writing out lower bytes first then | 94 | * Older gmux versions require writing out lower bytes first then |