public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
From: Len Brown <lenb@kernel.org>
To: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Cc: ibm-acpi-devel@lists.sourceforge.net, linux-acpi@vger.kernel.org
Subject: Re: [PATCH 00/21] ACPI: ibm-acpi: cleanups, extended fan/thermal support
Date: Sat, 16 Dec 2006 00:43:19 -0500	[thread overview]
Message-ID: <200612160043.19918.lenb@kernel.org> (raw)
In-Reply-To: <20061125204155.6604.35338.stgit@thorin.khazad-dum.debian.net>

applied, with this update to play with Linux-2.6.20-rc1

thanks,
-Len

commit 25c68a33b7b74b37793b1250007e5e21d621a7fc
Author: Len Brown <len.brown@intel.com>
Date:   Fri Dec 8 04:43:41 2006 -0500

    ACPI: ibm_acpi: respond to workqueue update
    
    Signed-off-by: Len Brown <len.brown@intel.com>

diff --git a/drivers/acpi/ibm_acpi.c b/drivers/acpi/ibm_acpi.c
index 92e7b6e..ab18007 100644
--- a/drivers/acpi/ibm_acpi.c
+++ b/drivers/acpi/ibm_acpi.c
@@ -1825,9 +1825,9 @@ static enum fan_control_commands fan_control_commands;
 static int fan_control_status_known;
 static u8 fan_control_initial_status;
 
-static void fan_watchdog_fire(void *ignored);
+static void fan_watchdog_fire(struct work_struct *ignored);
 static int fan_watchdog_maxinterval;
-static DECLARE_WORK(fan_watchdog_task, fan_watchdog_fire, NULL);
+static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
 
 static int fan_init(void)
 {
@@ -2284,7 +2284,7 @@ static int fan_write(char *buf)
 	return rc;
 }
 
-static void fan_watchdog_fire(void *ignored)
+static void fan_watchdog_fire(struct work_struct *ignored)
 {
 	printk(IBM_NOTICE "fan watchdog: enabling fan\n");
 	if (fan_set_enable()) {

      parent reply	other threads:[~2006-12-16  5:44 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-11-25 20:41 [PATCH 00/21] ACPI: ibm-acpi: cleanups, extended fan/thermal support Henrique de Moraes Holschuh
2006-11-25 20:42 ` [PATCH 01/21] ACPI: ibm-acpi: do not use / in driver names Henrique de Moraes Holschuh
2006-11-29  9:08   ` Zhang Rui
2006-11-25 20:42 ` [PATCH 03/21] ACPI: ibm-acpi: Use a enum to select the thermal sensor reading strategy Henrique de Moraes Holschuh
     [not found] ` <20061125204155.6604.35338.stgit-H32KNTuDSMjdPi8JTuvWk31TOOPCyuNQ5NbjCUgZEJk@public.gmane.org>
2006-11-25 20:42   ` [PATCH 02/21] ACPI: ibm-acpi: trivial Lindent cleanups Henrique de Moraes Holschuh
2006-11-25 20:43   ` [PATCH 04/21] ACPI: ibm-acpi: Implement direct-ec-access thermal reading modes for up to 16 sensors Henrique de Moraes Holschuh
2006-11-25 20:43   ` [PATCH 05/21] ACPI: ibm-acpi: document thermal sensor locations for the A31 Henrique de Moraes Holschuh
2006-11-25 20:43   ` [PATCH 06/21] ACPI: ibm-acpi: prepare to cleanup fan_read and fan_write Henrique de Moraes Holschuh
2006-11-25 20:44   ` [PATCH 07/21] ACPI: ibm-acpi: clean up fan_read Henrique de Moraes Holschuh
2006-11-25 20:44   ` [PATCH 08/21] ACPI: ibm-acpi: break fan_read into separate functions Henrique de Moraes Holschuh
2006-11-25 20:45   ` [PATCH 10/21] ACPI: ibm-acpi: document fan control Henrique de Moraes Holschuh
2006-11-25 20:45   ` [PATCH 12/21] ACPI: ibm-acpi: fix and extend fan enable Henrique de Moraes Holschuh
2006-11-25 20:47   ` [PATCH 16/21] ACPI: ibm-acpi: implement fan watchdog command Henrique de Moraes Holschuh
2006-11-25 20:47   ` [PATCH 18/21] ACPI: ibm-acpi: make non-generic bay support optional Henrique de Moraes Holschuh
2006-11-25 20:48   ` [PATCH 19/21] ACPI: ibm-acpi: backlight device cleanup Henrique de Moraes Holschuh
2006-11-25 20:48   ` [PATCH 20/21] ACPI: ibm-acpi: style fixes and cruft removal Henrique de Moraes Holschuh
2006-11-25 20:48   ` [PATCH 21/21] ACPI: ibm-acpi: update version and copyright Henrique de Moraes Holschuh
2006-11-25 20:44 ` [PATCH 09/21] ACPI: ibm-acpi: cleanup fan_write Henrique de Moraes Holschuh
2006-11-25 20:45 ` [PATCH 11/21] ACPI: ibm-acpi: extend fan status functions Henrique de Moraes Holschuh
2006-11-25 20:46 ` [PATCH 13/21] ACPI: ibm-acpi: fix and extend fan control functions Henrique de Moraes Holschuh
2006-11-25 20:46 ` [PATCH 14/21] ACPI: ibm-acpi: store embedded controller firmware version for matching Henrique de Moraes Holschuh
2006-11-25 20:46 ` [PATCH 15/21] ACPI: ibm-acpi: workaround for EC 0x2f initialization bug Henrique de Moraes Holschuh
2006-11-25 20:47 ` [PATCH 17/21] ACPI: ibm-acpi: add support for the ultrabay on the T60,X60 Henrique de Moraes Holschuh
2006-12-07  6:23 ` [PATCH 00/21] ACPI: ibm-acpi: cleanups, extended fan/thermal support Len Brown
2006-12-07 19:35   ` Henrique de Moraes Holschuh
2006-12-16  5:43 ` Len Brown [this message]

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=200612160043.19918.lenb@kernel.org \
    --to=lenb@kernel.org \
    --cc=hmh@hmh.eng.br \
    --cc=ibm-acpi-devel@lists.sourceforge.net \
    --cc=linux-acpi@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox