Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1764245AbZCaXCu (ORCPT ); Tue, 31 Mar 2009 19:02:50 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1763265AbZCaXCZ (ORCPT ); Tue, 31 Mar 2009 19:02:25 -0400 Received: from cavan.codon.org.uk ([93.93.128.6]:43015 "EHLO vavatch.codon.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1764065AbZCaXCY (ORCPT ); Tue, 31 Mar 2009 19:02:24 -0400 Date: Wed, 1 Apr 2009 00:02:17 +0100 From: Matthew Garrett To: Azael Avalos Cc: linux-acpi@vger.kernel.org, dsilvers@simtec.co.uk, toshiba_acpi@memebeam.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 2/2] toshiba-acpi: Support TOS1900-type devices Message-ID: <20090331230217.GA31599@srcf.ucam.org> References: <20090331214501.GC29489@srcf.ucam.org> <20090331214749.GD29489@srcf.ucam.org> <74962ea30903311506m41306659td0cd70c5736f6660@mail.gmail.com> <20090331221107.GA30383@srcf.ucam.org> <74962ea30903311519s2fb6087fxfe8859e3c570ac99@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <74962ea30903311519s2fb6087fxfe8859e3c570ac99@mail.gmail.com> User-Agent: Mutt/1.5.12-2006-07-14 X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: mjg59@codon.org.uk X-SA-Exim-Scanned: No (on vavatch.codon.org.uk); SAEximRunCond expanded to false Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1439 Lines: 45 Ok, can you try this and let me know what codes it generates (if it generates any)? It should go on top of the previous patches. diff --git a/drivers/platform/x86/toshiba_acpi.c b/drivers/platform/x86/toshiba_acpi.c index 9fb4873..8552e1a 100644 --- a/drivers/platform/x86/toshiba_acpi.c +++ b/drivers/platform/x86/toshiba_acpi.c @@ -185,7 +185,6 @@ static int write_acpi_int(const char *methodName, int val) return (status == AE_OK); } -#if 0 static int read_acpi_int(const char *methodName, int *pVal) { struct acpi_buffer results; @@ -200,7 +199,6 @@ static int read_acpi_int(const char *methodName, int *pVal) return (status == AE_OK) && (out_objs[0].type == ACPI_TYPE_INTEGER); } -#endif static const char *method_hci /*= 0*/ ; @@ -802,6 +800,13 @@ static void toshiba_acpi_notify(acpi_handle handle, u32 event, void **data) if (event != 0x80) return; + + if (is_valid_acpi_path(TOSH_INTERFACE_2 SPFC_METHOD)) { + read_acpi_int(TOSH_INTERFACE_2 SPFC_METHOD, &value); + printk("Received 0x%x\n", value); + return; + } + do { hci_read1(HCI_SYSTEM_EVENT, &value, &hci_result); if (hci_result == HCI_SUCCESS) { -- Matthew Garrett | mjg59@srcf.ucam.org -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/