From: Stephen Hemminger <shemminger@linux-foundation.org>
To: dmitry.torokhov@gmail.com
Cc: linux-input@vger.kernel.org, akpm@linux-foundation.org
Subject: [PATCH 3/4] apanel: detach on shutdown
Date: Mon, 03 Dec 2007 14:18:10 -0800 [thread overview]
Message-ID: <20071203221900.829441891@linux-foundation.org> (raw)
In-Reply-To: 20071203221807.077325020@linux-foundation.org
[-- Attachment #1: fujitsu-apanel-shutdown.patch --]
[-- Type: text/plain, Size: 769 bytes --]
Need to stop any device polling on shutdown. Without this, the
laptop can sometimes not turn off.
Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
--- a/drivers/input/misc/apanel.c 2007-11-20 06:11:34.000000000 -0800
+++ b/drivers/input/misc/apanel.c 2007-11-20 06:14:18.000000000 -0800
@@ -193,12 +193,18 @@ static int apanel_attach_adapter(struct
return i2c_probe(adap, &addr_data, apanel_probe);
}
+static void apanel_shutdown(struct i2c_client *client)
+{
+ apanel_detach_client(client);
+}
+
static struct i2c_driver apanel_driver = {
.driver = {
.name = APANEL,
},
.attach_adapter = &apanel_attach_adapter,
.detach_client = &apanel_detach_client,
+ .shutdown = &apanel_shutdown,
};
static struct apanel apanel = {
--
next prev parent reply other threads:[~2007-12-03 22:21 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-12-03 22:18 [PATCH 0/4] Fujitsu panel update Stephen Hemminger
2007-12-03 22:18 ` [PATCH 1/4] apanel: free input device on close Stephen Hemminger
2007-12-03 22:18 ` [PATCH 2/4] apanel: change name of LED Stephen Hemminger
2007-12-03 22:18 ` Stephen Hemminger [this message]
2007-12-03 22:18 ` [PATCH 4/4] apanel: use generic keycode routines Stephen Hemminger
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=20071203221900.829441891@linux-foundation.org \
--to=shemminger@linux-foundation.org \
--cc=akpm@linux-foundation.org \
--cc=dmitry.torokhov@gmail.com \
--cc=linux-input@vger.kernel.org \
/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.