All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/33] acpi4asus updates for 2.6.33
@ 2009-12-03  7:44 Corentin Chary
  2009-12-03  7:44 ` [PATCH 01/33] eeepc-laptop: disp attribute should be write-only Corentin Chary
  2009-12-09 21:04 ` [PATCH 00/33] acpi4asus updates for 2.6.33 Len Brown
  0 siblings, 2 replies; 55+ messages in thread
From: Corentin Chary @ 2009-12-03  7:44 UTC (permalink / raw)
  To: Len Brown; +Cc: linux-acpi, Corentin Chary

Hi Len,
Here patchs from acpi4asus for 2.6.33.
You'll find a major rewrite of eeepc-laptop by Alan Jenkins which really
cleans the code. I'm working one something similar for asus-laptop, this should
be ready for 2.6.34.
There is also some fix and updates for asus-laptop and asus-acpi.
asus-laptop now support Lenovo SL laptop (yep this is strange, but this is the
same acpi interface).

There is two smalls style issues in Alan's patchs, but I made a patch to fix that
in the serie, it was easier than reworking the whole serie, but I'll try to
avoid that next time.

The last two patchs may be controversial.

The first one add the KEY_WIRELESS_CYCLE. This keycode could be used when
the key is not only for wlan, but could also be used for bluetooth and wimax.

The last schedule some asus-laptop features for removale, because they are
not defined in a standard way in the acpi interface.
Thanks,

Alan Jenkins (25):
  eeepc-laptop: disp attribute should be write-only
  asus-laptop: Remove redundant NULL checks
  asus-acpi: Remove redundant NULL checks
  asus-laptop: Remove uneccesary acpi_disabled check
  asus-acpi: Remove uneccesary acpi_disabled checks
  asus-acpi: set acpi_driver.owner
  asus-laptop: set acpi_driver.owner
  eeepc-laptop: Remove redundant NULL checks
  eeepc-laptop: Remove uneccesary acpi_disabled check
  eeepc-laptop: set acpi_driver.owner
  eeepc-laptop: fix value of pwm1_enable to match documentation
  eeepc-laptop: fix led initialization order
  eeepc-laptop: fix potential leak (led_init() failure)
  eeepc-laptop: fix set_acpi() to return non-zero on failure
  eeepc-laptop: remove redundant NULL checks
  eeepc-laptop: no need to check argument of set_brightness()
  eeepc-laptop: simplify acpi initialization
  eeepc-laptop: simplify how the hwmon device reads values from the EC
  eeepc-laptop: refactor notifications
  eeepc-laptop: move platform driver registration out of
    eeepc_hotk_add()
  eeepc-laptop: move platform device initialisation to a separate
    function
  eeepc-laptop: code movement
  eeepc-laptop: revise names
  eeepc-laptop: callbacks should use "driver data" parameter or field
  eeepc-laptop: re-add check for eeepc->backlight == NULL

Corentin Chary (7):
  eeepc-laptop: add touchpad led
  asus-laptop: use KEY_F13 to map "Disable Touchpad" event
  asus-laptop: Add wlan switch found on V6V
  eeepc-laptop: map keys found on newer eeepc
  eeepc-laptop: fix coding style
  input: add KEY_WIRELESS_CYCLE
  asus-laptop: schedule display_get and lcd_switch for removal

Ike Panhc (1):
  asus-laptop: add Lenovo SL hotkey support

 Documentation/feature-removal-schedule.txt |   20 +
 drivers/platform/x86/Kconfig               |    2 +
 drivers/platform/x86/asus-laptop.c         |   21 +-
 drivers/platform/x86/asus_acpi.c           |   19 +-
 drivers/platform/x86/eeepc-laptop.c        | 1415 +++++++++++++++------------
 include/linux/input.h                      |    1 +
 6 files changed, 825 insertions(+), 653 deletions(-)


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

end of thread, other threads:[~2009-12-09 21:04 UTC | newest]

Thread overview: 55+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-12-03  7:44 [PATCH 00/33] acpi4asus updates for 2.6.33 Corentin Chary
2009-12-03  7:44 ` [PATCH 01/33] eeepc-laptop: disp attribute should be write-only Corentin Chary
2009-12-03  7:44   ` [PATCH 02/33] asus-laptop: Remove redundant NULL checks Corentin Chary
2009-12-03  7:44     ` [PATCH 03/33] asus-acpi: " Corentin Chary
2009-12-03  7:44       ` [PATCH 04/33] asus-laptop: Remove uneccesary acpi_disabled check Corentin Chary
2009-12-03  7:44         ` [PATCH 05/33] asus-acpi: Remove uneccesary acpi_disabled checks Corentin Chary
2009-12-03  7:44           ` [PATCH 06/33] asus-acpi: set acpi_driver.owner Corentin Chary
2009-12-03  7:44             ` [PATCH 07/33] asus-laptop: " Corentin Chary
2009-12-03  7:44               ` [PATCH 08/33] eeepc-laptop: add touchpad led Corentin Chary
2009-12-03  7:44                 ` [PATCH 09/33] eeepc-laptop: Remove redundant NULL checks Corentin Chary
2009-12-03  7:44                   ` [PATCH 10/33] eeepc-laptop: Remove uneccesary acpi_disabled check Corentin Chary
2009-12-03  7:44                     ` [PATCH 11/33] eeepc-laptop: set acpi_driver.owner Corentin Chary
2009-12-03  7:44                       ` [PATCH 12/33] eeepc-laptop: fix value of pwm1_enable to match documentation Corentin Chary
2009-12-03  7:44                         ` [PATCH 13/33] eeepc-laptop: fix led initialization order Corentin Chary
2009-12-03  7:44                           ` [PATCH 14/33] eeepc-laptop: fix potential leak (led_init() failure) Corentin Chary
2009-12-03  7:44                             ` [PATCH 15/33] eeepc-laptop: fix set_acpi() to return non-zero on failure Corentin Chary
2009-12-03  7:45                               ` [PATCH 16/33] eeepc-laptop: remove redundant NULL checks Corentin Chary
2009-12-03  7:45                                 ` [PATCH 17/33] eeepc-laptop: no need to check argument of set_brightness() Corentin Chary
2009-12-03  7:45                                   ` [PATCH 18/33] eeepc-laptop: simplify acpi initialization Corentin Chary
2009-12-03  7:45                                     ` [PATCH 19/33] eeepc-laptop: simplify how the hwmon device reads values from the EC Corentin Chary
2009-12-03  7:45                                       ` [PATCH 20/33] eeepc-laptop: refactor notifications Corentin Chary
2009-12-03  7:45                                         ` [PATCH 21/33] eeepc-laptop: move platform driver registration out of eeepc_hotk_add() Corentin Chary
2009-12-03  7:45                                           ` [PATCH 22/33] eeepc-laptop: move platform device initialisation to a separate function Corentin Chary
2009-12-03  7:45                                             ` [PATCH 23/33] eeepc-laptop: code movement Corentin Chary
2009-12-03  7:45                                               ` [PATCH 24/33] eeepc-laptop: revise names Corentin Chary
2009-12-03  7:45                                                 ` [PATCH 25/33] eeepc-laptop: callbacks should use "driver data" parameter or field Corentin Chary
2009-12-03  7:45                                                   ` [PATCH 26/33] asus-laptop: use KEY_F13 to map "Disable Touchpad" event Corentin Chary
2009-12-03  7:45                                                     ` [PATCH 27/33] asus-laptop: add Lenovo SL hotkey support Corentin Chary
2009-12-03  7:45                                                       ` [PATCH 28/33] asus-laptop: Add wlan switch found on V6V Corentin Chary
2009-12-03  7:45                                                         ` [PATCH 29/33] eeepc-laptop: map keys found on newer eeepc Corentin Chary
2009-12-03  7:45                                                           ` [PATCH 30/33] eeepc-laptop: fix coding style Corentin Chary
2009-12-03  7:45                                                             ` [PATCH 31/33] eeepc-laptop: re-add check for eeepc->backlight == NULL Corentin Chary
2009-12-03  7:45                                                               ` [PATCH 32/33] input: add KEY_WIRELESS_CYCLE Corentin Chary
2009-12-03  7:45                                                                 ` [PATCH 33/33] asus-laptop: schedule display_get and lcd_switch for removal Corentin Chary
2009-12-03  7:54                                                                 ` [PATCH 32/33] input: add KEY_WIRELESS_CYCLE Dmitry Torokhov
2009-12-03  8:12                                                                   ` Corentin Chary
2009-12-03  8:21                                                                     ` Dmitry Torokhov
2009-12-03  8:51                                                                       ` Corentin Chary
2009-12-03  8:57                                                                         ` Dmitry Torokhov
2009-12-03  9:22                                                                           ` Corentin Chary
2009-12-03  9:43                                                                             ` Johannes Berg
2009-12-03 11:23                                                                               ` [Kde-hardware-devel] " Will Stephenson
2009-12-03 11:23                                                                                 ` Will Stephenson
2009-12-03 15:01                                                                             ` Matthew Garrett
2009-12-06  6:58                                                                     ` Andrey Rahmatullin
2009-12-06  7:17                                                                       ` Dmitry Torokhov
2009-12-06  8:21                                                                         ` Corentin Chary
2009-12-06 14:54                                                                           ` Matthew Garrett
2009-12-07 11:47                                                                             ` Henrique de Moraes Holschuh
2009-12-07 12:55                                                                               ` Matthew Garrett
2009-12-07 13:23                                                                                 ` Henrique de Moraes Holschuh
2009-12-07 14:20                                                                                   ` Matthew Garrett
2009-12-07 17:02                                                                                     ` Henrique de Moraes Holschuh
2009-12-03 10:54                                                                   ` Henrique de Moraes Holschuh
2009-12-09 21:04 ` [PATCH 00/33] acpi4asus updates for 2.6.33 Len Brown

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.