From: Seth Forshee <seth.forshee@canonical.com>
To: Konrad Rzeszutek Wilk <konrad@darnok.org>
Cc: Thomas Renninger <trenn@suse.de>,
Matthew Garrett <mjg@redhat.com>,
linux-acpi@vger.kernel.org, Azael Avalos <coproscefalo@gmail.com>,
platform-driver-x86@vger.kernel.org, Len Brown <lenb@kernel.org>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 1/4] ACPI: EC: Add ec_get_handle()
Date: Thu, 5 Jan 2012 13:34:36 -0600 [thread overview]
Message-ID: <20120105193436.GC25386@ubuntu-macmini> (raw)
In-Reply-To: <CAPbh3ruqMQ8UFSehm7vX5i8YWzRFwF5=TX_f4n4dVkvmQa9Njw@mail.gmail.com>
On Thu, Jan 05, 2012 at 01:27:08PM -0500, Konrad Rzeszutek Wilk wrote:
> 8
> On Jan 3, 2012 2:05 PM, "Seth Forshee" <seth.forshee@canonical.com> wrote:
> >
> > toshiba_acpi needs to execute an AML method within the EC namespace
> > to make hotkeys work on some platforms. Provide an interface to
> > allow it to easily get a handle to the EC namespace for this purpose.
> >
> > Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
> > ---
> > drivers/acpi/ec.c | 10 ++++++++++
> > include/linux/acpi.h | 1 +
> > 2 files changed, 11 insertions(+), 0 deletions(-)
> >
> > diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c
> > index b19a18d..e37615f 100644
> > --- a/drivers/acpi/ec.c
> > +++ b/drivers/acpi/ec.c
> > @@ -445,6 +445,16 @@ int ec_transaction(u8 command,
> >
> > EXPORT_SYMBOL(ec_transaction);
> >
> > +/* Get the handle to the EC device */
> > +acpi_handle ec_get_handle(void)
> > +{
> > + if (!first_ec)
> > + return NULL;
> > + return first_ec->handle;
> > +}
> > +
> > +EXPORT_SYMBOL(ec_get_handle);
>
> shouldn't this be _GPL?
I don't know. All the other ec_* interfaces are EXPORT_SYMBOL, so I did
likewise. I'm happy to change it if _GPL is what ought to be used here.
next prev parent reply other threads:[~2012-01-05 19:34 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-03 19:02 [PATCH v2 0/4] toshiba_acpi: Expanded hotkey support Seth Forshee
2012-01-03 19:02 ` [PATCH v2 1/4] ACPI: EC: Add ec_get_handle() Seth Forshee
2012-01-05 18:22 ` Matthew Garrett
[not found] ` <CAPbh3ruqMQ8UFSehm7vX5i8YWzRFwF5=TX_f4n4dVkvmQa9Njw@mail.gmail.com>
2012-01-05 19:34 ` Seth Forshee [this message]
2012-01-07 20:55 ` Konrad Rzeszutek Wilk
2012-01-07 21:26 ` Matthew Garrett
2012-01-03 19:02 ` [PATCH v2 2/4] toshiba_acpi: Support alternate hotkey interfaces Seth Forshee
2012-01-05 18:25 ` Matthew Garrett
2012-01-05 19:43 ` Seth Forshee
2012-01-05 19:47 ` Matthew Garrett
2012-01-03 19:02 ` [PATCH v2 3/4] toshiba_acpi: Support additional hotkey scancodes Seth Forshee
2012-01-03 19:02 ` [PATCH v2 4/4] toshiba_acpi: Add blacklist for models with hotkey problems Seth Forshee
2012-01-05 18:26 ` Matthew Garrett
2012-01-05 19:32 ` Seth Forshee
2012-01-05 19:34 ` Matthew Garrett
2012-01-05 20:04 ` Seth Forshee
2012-01-05 20:09 ` Matthew Garrett
2012-01-05 20:24 ` Seth Forshee
2012-01-05 20:46 ` Moore, Robert
2012-01-05 20:58 ` Seth Forshee
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120105193436.GC25386@ubuntu-macmini \
--to=seth.forshee@canonical.com \
--cc=coproscefalo@gmail.com \
--cc=konrad@darnok.org \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mjg@redhat.com \
--cc=platform-driver-x86@vger.kernel.org \
--cc=trenn@suse.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.