From 73966cbddd59f16f69f71164c69c07d45d293d68 Mon Sep 17 00:00:00 2001 From: Lekensteyn Date: Fri, 30 Dec 2011 15:48:34 +0100 Subject: [PATCH] Fix logic in Optimus DSM execution --- bbswitch.c | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/bbswitch.c b/bbswitch.c index c4343a3..ac63c96 100644 --- a/bbswitch.c +++ b/bbswitch.c @@ -141,17 +141,19 @@ static int has_dsm_func(const char muid[16], int revid, int sfnc) { } static int bbswitch_optimus_dsm(void) { - char args[] = {1, 0, 0, 3}; - u32 result = 0; + if (dsm_type == DSM_TYPE_OPTIMUS) { + char args[] = {1, 0, 0, 3}; + u32 result = 0; - if (acpi_call_dsm(dis_handle, acpi_optimus_dsm_muid, 0x100, 0x1A, args, - &result)) { + if (acpi_call_dsm(dis_handle, acpi_optimus_dsm_muid, 0x100, 0x1A, args, + &result)) { + // failure + return 1; + } printk(KERN_DEBUG "bbswitch: Result of Optimus _DSM call: %08X\n", result); - return 0; } - // failure - return 1; + return 0; } static int bbswitch_acpi_off(void) { @@ -211,9 +213,9 @@ static void bbswitch_off(void) { printk(KERN_INFO "bbswitch: disabling discrete graphics\n"); - if (dsm_type == DSM_TYPE_OPTIMUS && bbswitch_optimus_dsm()) { - printk(KERN_WARNING "bbswitch: ACPI call failed, the device is not" - " disabled\n"); + if (bbswitch_optimus_dsm()) { + printk(KERN_WARNING "bbswitch: Optimus ACPI call failed, the device is" + " not disabled\n"); return; }