Re: ACPI: ibm-acpi: fix initial status of backlight device

2007-02-22 Thread Richard Purdie
On Wed, 2007-02-21 at 23:16 -0200, Henrique de Moraes Holschuh wrote: NOTE: This patch needs an ACK from Richard Purdie before it can be merged, as he might want to change the backlight class code instead. As mentioned elsewhere, we can't do this in the class itself. ---

Re: [PATCH - 2.6.19 -0/1] Backport of psmouse suspend/shutdown cleanups

2007-02-22 Thread Thomas Renninger
On Wed, 2007-02-21 at 12:26 -0500, Dmitry Torokhov wrote: On 2/21/07, Thomas Renninger [EMAIL PROTECTED] wrote: Hi, I like to ask for inclusion into stable series for these. The original patch from Dmitry can be found here: http://bugzilla.kernel.org/show_bug.cgi?id=7689 comment

Re: [PATCH - 2.6.19 -0/1] Backport of psmouse suspend/shutdown cleanups

2007-02-22 Thread Dmitry Torokhov
On 2/22/07, Thomas Renninger [EMAIL PROTECTED] wrote: When adding the .shutdown workaround I went down and realized it must be this: psmouse_set_state(psmouse, PSMOUSE_CMD_MODE); or this: psmouse_set_state(psmouse, PSMOUSE_IGNORE); as I added the stuff in serio.c, I didn't

C-States Usage/Accounting

2007-02-22 Thread Eduard Giménez Cerdà
Hello, I've two machines with the following configuration: Processor: Intel Core Solo T1300 / Intel Celeron M 420 Mainboard: Asus N4L-VM DH with Intel 945GM Chipset with an AMI BIOS (I suppose the drives and the memory are not important) With the vanilla

ACPI: ibm-acpi: fix initial status of backlight device

2007-02-22 Thread Henrique de Moraes Holschuh
The brightness class core does not update the initial status of the device's brightness at register time. Do it by ourselves. Signed-off-by: Henrique de Moraes Holschuh [EMAIL PROTECTED] Cc: Richard Purdie [EMAIL PROTECTED] --- Waiting ACK from Richard Purdie, applies on top of 2.6.21-rc1.

Re: [lm-sensors] Could the k8temp driver be interfering with ACPI?

2007-02-22 Thread Jean Delvare
On Wed, 21 Feb 2007 15:19:44 -0500, Dave Jones wrote: Ah, Fedora has this horror in its initscripts (which explains why I missed it in my grep).. # Initialize ACPI bits if [ -d /proc/acpi ]; then for module in /lib/modules/$unamer/kernel/drivers/acpi/* ; do module=${module##*/}

Re: ACPI: ibm-acpi: fix initial status of backlight device

2007-02-22 Thread Henrique de Moraes Holschuh
Here's the final version. I will request a pull from Len Brown to get it into acpi-test, from where it will eventually reach mainline at Len's discretion. -- One disk to rule them all, One disk to find them. One disk to bring them all and in the darkness grind them. In the Land of Redmond

Re: [GIT PATCH] ACPI patches for 2.6.21

2007-02-22 Thread Pavel Machek
Hi! the old /proc/acpi/ interfaces with cleaner interfaces in sysfs -- non-ACPI-specific generic ones whenever possible. This effort is not complete, but it has been in -mm for a long time and I believe that it is time to push it upstream to benefit from broader exposure and

2.6.20-mm2 CONFIG_ACPI_BAY=y: undefined reference to `is_dock_device'

2007-02-22 Thread Andreas Mohr
Hello all, make-kpkg kernel_image bombed with: LD init/built-in.o LD .tmp_vmlinux1 drivers/built-in.o: In function `bay_is_dock_device': drivers/acpi/bay.c:261: undefined reference to `is_dock_device' drivers/acpi/bay.c:261: undefined reference to `is_dock_device'

[PATCH 1/3]cpuidle take2: Core cpuidle infrastructure

2007-02-22 Thread Venkatesh Pallipadi
Announcing 'cpuidle', a new CPU power management infrastructure to manage idle CPUs in a clean and efficient manner. cpuidle separates out the drivers that can provide support for multiple types of idle states and policy governors that decide on what idle state to use at run time. A cpuidle

[PATCH 2/3]cpuidle take2: Hookup ACPI C-states driver with cpuidle

2007-02-22 Thread Venkatesh Pallipadi
Hookup ACPI C-states onto generic cpuidle infrastructure. drivers/acpi/procesor_idle.c is now a ACPI C-states driver that registers as a driver in cpuidle infrastructure and the policy part is removed from drivers/acpi/processor_idle.c. We use governor in cpuidle instead. Signed-off-by:

[PATCH 3/3]cpuidle take2: Basic documentation for cpuidle

2007-02-22 Thread Venkatesh Pallipadi
Documentation for cpuidle infrastructure Signed-off-by: Venkatesh Pallipadi [EMAIL PROTECTED] Signed-off-by: Adam Belay [EMAIL PROTECTED] Signed-off-by: Shaohua Li [EMAIL PROTECTED] Index: linux-2.6.21-rc-mm/Documentation/cpuidle/core.txt

[GIT PULL] ibm-acpi updates

2007-02-22 Thread Henrique de Moraes Holschuh
Len, Please pull from git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git branch for-upstream/acpi-test to receive the following patches: ACPI: ibm-acpi: make ibm-acpi bay support optional ACPI: ibm-acpi: fix initial status of backlight device The branch is based on 2.6.21-rc1. --

[PATCH 1/2] ACPI: ibm-acpi: fix initial status of backlight device

2007-02-22 Thread Henrique de Moraes Holschuh
The brightness class core does not update the initial status of the device's brightness at register time. Do it by ourselves. Signed-off-by: Henrique de Moraes Holschuh [EMAIL PROTECTED] Acked-by: Richard Purdie [EMAIL PROTECTED] --- drivers/acpi/ibm_acpi.c | 10 +- 1 files changed, 9

[PATCH 2/2] ACPI: ibm-acpi: make ibm-acpi bay support optional

2007-02-22 Thread Henrique de Moraes Holschuh
Make ibm-acpi bay support optional at kernel compile time. Signed-off-by: Henrique de Moraes Holschuh [EMAIL PROTECTED] --- drivers/acpi/Kconfig| 11 +++ drivers/acpi/ibm_acpi.c | 12 2 files changed, 23 insertions(+), 0 deletions(-) diff --git

Re: [GIT PULL] ibm-acpi updates

2007-02-22 Thread Len Brown
On Thursday 22 February 2007 15:55, Henrique de Moraes Holschuh wrote: Len, Please pull from git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git branch for-upstream/acpi-test to receive the following patches: ACPI: ibm-acpi: make ibm-acpi bay support optional ACPI: ibm-acpi: fix

AE_NOT_FOUND, (Re: [ACPI] Several remarks for 9654640d0af8f2de40ff3807d3695109d3463f54)

2007-02-22 Thread Len Brown
On Thursday 22 February 2007 14:08, Thomas Meyer wrote: 1.) My kde klaptopdaemon icon is gone. This icon displayed the remaining battery time. This is maybe a kde problem? 2.) I get these new messages in the kernel log buffer: [...] ACPI: bus type pci registered PCI: Using MMCONFIG

Re: [lm-sensors] Could the k8temp driver be interfering with ACPI?

2007-02-22 Thread Jean Delvare
On Fri, 23 Feb 2007 08:13:30 +0100, Hans de Goede wrote: I'm thinking that it might be an idea to also use this idea of udev autoloading through DMI info for the abituguru and abituguru3 driver (review please). The both only support about 12 motherboards. For the abituguru driver, dmi info

Re: [lm-sensors] Could the k8temp driver be interfering with ACPI?

2007-02-22 Thread Hans de Goede
Jean Delvare wrote: On Wed, 21 Feb 2007 15:19:44 -0500, Dave Jones wrote: Ah, Fedora has this horror in its initscripts (which explains why I missed it in my grep).. # Initialize ACPI bits if [ -d /proc/acpi ]; then for module in /lib/modules/$unamer/kernel/drivers/acpi/* ; do