All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] acpi4asus's patchs for 2.6.39-rc1
@ 2011-03-30 14:32 Corentin Chary
  2011-03-30 14:32 ` [PATCH 1/3] asus-laptop: remove removed features from feature-removal-schedule.txt Corentin Chary
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Corentin Chary @ 2011-03-30 14:32 UTC (permalink / raw)
  To: Matthew Garrett; +Cc: acpi4asus-user, platform-driver-x86, Corentin Chary

Hi Matthew,
Some small and clean fixes for 2.6.39.
Thanks,

Corentin Chary (3):
  asus-laptop: remove removed features from
    feature-removal-schedule.txt
  asus-wmi: swap input name and phys
  eeepc-wmi: add keys found on EeePC 1215T

 Documentation/feature-removal-schedule.txt |   20 --------------------
 drivers/platform/x86/asus-wmi.c            |    4 ++--
 drivers/platform/x86/eeepc-wmi.c           |    2 ++
 3 files changed, 4 insertions(+), 22 deletions(-)

-- 
1.7.3.4

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/3] asus-laptop: remove removed features from feature-removal-schedule.txt
  2011-03-30 14:32 [PATCH 0/3] acpi4asus's patchs for 2.6.39-rc1 Corentin Chary
@ 2011-03-30 14:32 ` Corentin Chary
  2011-03-30 14:32 ` [PATCH 2/3] asus-wmi: swap input name and phys Corentin Chary
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Corentin Chary @ 2011-03-30 14:32 UTC (permalink / raw)
  To: Matthew Garrett; +Cc: acpi4asus-user, platform-driver-x86, Corentin Chary

commit 3b81cf9d558c57406b4ed9b0d2639113d1d428b6 removed those features.

Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
---
 Documentation/feature-removal-schedule.txt |   20 --------------------
 1 files changed, 0 insertions(+), 20 deletions(-)

diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt
index 274b32d..492e81d 100644
--- a/Documentation/feature-removal-schedule.txt
+++ b/Documentation/feature-removal-schedule.txt
@@ -387,26 +387,6 @@ Who:	Tejun Heo <tj@kernel.org>
 
 ----------------------------
 
-What:	Support for lcd_switch and display_get in asus-laptop driver
-When:	March 2010
-Why:	These two features use non-standard interfaces. There are the
-	only features that really need multiple path to guess what's
-	the right method name on a specific laptop.
-
-	Removing them will allow to remove a lot of code an significantly
-	clean the drivers.
-
-	This will affect the backlight code which won't be able to know
-	if the backlight is on or off. The platform display file will also be
-	write only (like the one in eeepc-laptop).
-
-	This should'nt affect a lot of user because they usually know
-	when their display is on or off.
-
-Who:	Corentin Chary <corentin.chary@gmail.com>
-
-----------------------------
-
 What:	sysfs-class-rfkill state file
 When:	Feb 2014
 Files:	net/rfkill/core.c
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/3] asus-wmi: swap input name and phys
  2011-03-30 14:32 [PATCH 0/3] acpi4asus's patchs for 2.6.39-rc1 Corentin Chary
  2011-03-30 14:32 ` [PATCH 1/3] asus-laptop: remove removed features from feature-removal-schedule.txt Corentin Chary
@ 2011-03-30 14:32 ` Corentin Chary
  2011-03-30 14:32 ` [PATCH 3/3] eeepc-wmi: add keys found on EeePC 1215T Corentin Chary
       [not found] ` <1301495553-22468-1-git-send-email-corentin.chary-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  3 siblings, 0 replies; 5+ messages in thread
From: Corentin Chary @ 2011-03-30 14:32 UTC (permalink / raw)
  To: Matthew Garrett; +Cc: acpi4asus-user, platform-driver-x86, Corentin Chary

Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
---
 drivers/platform/x86/asus-wmi.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/platform/x86/asus-wmi.c b/drivers/platform/x86/asus-wmi.c
index efc776c..832a3fd7 100644
--- a/drivers/platform/x86/asus-wmi.c
+++ b/drivers/platform/x86/asus-wmi.c
@@ -201,8 +201,8 @@ static int asus_wmi_input_init(struct asus_wmi *asus)
 	if (!asus->inputdev)
 		return -ENOMEM;
 
-	asus->inputdev->name = asus->driver->input_phys;
-	asus->inputdev->phys = asus->driver->input_name;
+	asus->inputdev->name = asus->driver->input_name;
+	asus->inputdev->phys = asus->driver->input_phys;
 	asus->inputdev->id.bustype = BUS_HOST;
 	asus->inputdev->dev.parent = &asus->platform_device->dev;
 
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 3/3] eeepc-wmi: add keys found on EeePC 1215T
  2011-03-30 14:32 [PATCH 0/3] acpi4asus's patchs for 2.6.39-rc1 Corentin Chary
  2011-03-30 14:32 ` [PATCH 1/3] asus-laptop: remove removed features from feature-removal-schedule.txt Corentin Chary
  2011-03-30 14:32 ` [PATCH 2/3] asus-wmi: swap input name and phys Corentin Chary
@ 2011-03-30 14:32 ` Corentin Chary
       [not found] ` <1301495553-22468-1-git-send-email-corentin.chary-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  3 siblings, 0 replies; 5+ messages in thread
From: Corentin Chary @ 2011-03-30 14:32 UTC (permalink / raw)
  To: Matthew Garrett; +Cc: acpi4asus-user, platform-driver-x86, Corentin Chary

Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
---
 drivers/platform/x86/eeepc-wmi.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/platform/x86/eeepc-wmi.c b/drivers/platform/x86/eeepc-wmi.c
index 0ddc434..649dcad 100644
--- a/drivers/platform/x86/eeepc-wmi.c
+++ b/drivers/platform/x86/eeepc-wmi.c
@@ -67,9 +67,11 @@ static const struct key_entry eeepc_wmi_keymap[] = {
 	{ KE_KEY, 0x82, { KEY_CAMERA } },
 	{ KE_KEY, 0x83, { KEY_CAMERA_ZOOMIN } },
 	{ KE_KEY, 0x88, { KEY_WLAN } },
+	{ KE_KEY, 0xbd, { KEY_CAMERA } },
 	{ KE_KEY, 0xcc, { KEY_SWITCHVIDEOMODE } },
 	{ KE_KEY, 0xe0, { KEY_PROG1 } }, /* Task Manager */
 	{ KE_KEY, 0xe1, { KEY_F14 } }, /* Change Resolution */
+	{ KE_KEY, 0xe8, { KEY_SCREENLOCK } },
 	{ KE_KEY, 0xe9, { KEY_BRIGHTNESS_ZERO } },
 	{ KE_KEY, 0xeb, { KEY_CAMERA_ZOOMOUT } },
 	{ KE_KEY, 0xec, { KEY_CAMERA_UP } },
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 0/3] acpi4asus's patchs for 2.6.39-rc1
       [not found] ` <1301495553-22468-1-git-send-email-corentin.chary-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2011-04-01 18:21   ` Matthew Garrett
  0 siblings, 0 replies; 5+ messages in thread
From: Matthew Garrett @ 2011-04-01 18:21 UTC (permalink / raw)
  To: Corentin Chary
  Cc: acpi4asus-user-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	platform-driver-x86-u79uwXL29TY76Z2rM5mHXA

Applied the set, thanks.

-- 
Matthew Garrett | mjg59-1xO5oi07KQx4cg9Nei1l7Q@public.gmane.org

------------------------------------------------------------------------------
Create and publish websites with WebMatrix
Use the most popular FREE web apps or write code yourself; 
WebMatrix provides all the features you need to develop and 
publish your website. http://p.sf.net/sfu/ms-webmatrix-sf

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-04-01 18:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-30 14:32 [PATCH 0/3] acpi4asus's patchs for 2.6.39-rc1 Corentin Chary
2011-03-30 14:32 ` [PATCH 1/3] asus-laptop: remove removed features from feature-removal-schedule.txt Corentin Chary
2011-03-30 14:32 ` [PATCH 2/3] asus-wmi: swap input name and phys Corentin Chary
2011-03-30 14:32 ` [PATCH 3/3] eeepc-wmi: add keys found on EeePC 1215T Corentin Chary
     [not found] ` <1301495553-22468-1-git-send-email-corentin.chary-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2011-04-01 18:21   ` [PATCH 0/3] acpi4asus's patchs for 2.6.39-rc1 Matthew Garrett

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.