From: khali@linux-fr.org (Jean Delvare)
To: lm-sensors@vger.kernel.org
Subject: [lm-sensors] w83627ehf fan controll?
Date: Sun, 29 Jan 2006 21:31:33 +0000 [thread overview]
Message-ID: <20060129223133.73376b5b.khali@linux-fr.org> (raw)
In-Reply-To: <20051230143805.GA21201@Apollo>
Hi Yuan,
> The attachments is the diff of linux-2.6.16-rc1 and my local CVS, These
> two patches use new sensor attr and add more functions, any comments and
> modify are welcome. Hope someone can help fix the bugs in these patches
> and send it out.Thanks.
>
> It depends on "[PATCH 15/17] hwmon: Semaphore to mutex conversions"
> hwmon-convert-semaphores-to-mutexes.patch
> The first patch is w83627ehf_use_new_sensor_device_attr.patch.txt
> w83627ehf_add_more_functions.patch.txt is the second.
I've applied the first one to start with (use new sensor device attr),
it was really good. Let alone a few minor alignment issues, the only
change I'd like to do is:
for (i = 0; i < 5; i++) {
- if (!(data->has_fan & (1 << i)))
- continue;
- device_create_file_fan(dev, i);
+ if (data->has_fan & (1 << i))
+ device_create_file_fan(dev, i);
}
It's clearer and shorter that way. OK?
Also, next time, please provide -p1-style patches so that I can apply
them easily using quilt. And please also include your Signed-off-by
line.
I'll try to find some time tomorrow to review the second patch, unless
Rudolf Marek (or anyone else for that matter) beats me to it.
Thanks,
--
Jean Delvare
prev parent reply other threads:[~2006-01-29 21:31 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-12-30 14:38 [lm-sensors] w83627ehf fan controll? Sebastian Band
2005-12-30 14:53 ` Rudolf Marek
2005-12-31 9:18 ` Ymu
2005-12-31 19:12 ` Jean Delvare
2006-01-09 10:20 ` Aurelien Jarno
2006-01-21 19:23 ` Rudolf Marek
2006-01-23 2:14 ` Ymu
2006-01-24 6:05 ` Ymu
2006-01-29 21:31 ` Jean Delvare [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=20060129223133.73376b5b.khali@linux-fr.org \
--to=khali@linux-fr.org \
--cc=lm-sensors@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.