From: Jean Delvare <khali@linux-fr.org>
To: Joe Perches <joe@perches.com>
Cc: Guenter Roeck <guenter.roeck@ericsson.com>,
Hans de Goede <j.w.r.degoede@hhs.nl>,
Alistair John Strachan <alistair@devzero.co.uk>,
Henrik Rydberg <rydberg@euromail.se>,
"Mark M. Hoffman" <mhoffman@lightlink.com>,
Luca Tettamanti <kronos.it@gmail.com>,
Fenghua Yu <fenghua.yu@intel.com>,
Juerg Haefliger <juergh@gmail.com>,
Eric Piel <eric.piel@tremplin-utc.net>,
Jim Cromie <jim.cromie@gmail.com>,
Roger Lucas <vt8231@hiddenengine.co.uk>,
"lm-sensors@lm-sensors.org" <lm-sensors@lm-sensors.org>,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [lm-sensors] [PATCH] drivers/hwmon: Use pr_fmt and pr_<level>
Date: Wed, 20 Oct 2010 07:34:38 +0000 [thread overview]
Message-ID: <20101020093438.07b129c8@endymion.delvare> (raw)
In-Reply-To: <1287547662.10409.618.camel@Joe-Laptop>
On Tue, 19 Oct 2010 21:07:42 -0700, Joe Perches wrote:
> On Tue, 2010-10-19 at 20:53 -0700, Guenter Roeck wrote:
> > On Tue, Oct 19, 2010 at 11:34:18PM -0400, Joe Perches wrote:
> > > On Tue, 2010-10-19 at 20:29 -0700, Guenter Roeck wrote:
> > > > There are several lines longer than 80 characters.
> > > > Does this rule no longer apply ?
> > > 80 columns isn't checked for printk format strings.
> > Interesting.
> > > A kernel general preference may be to keep formats as
> > > a single string without line breaks so that grep works
> > > better.
> > > > Oddly enough, there are only four checkpatch warnings about long lines,
> > > > even though there are many more.
> > > The version I use doesn't show any warnings.
> > checkpatch.pl from both v2.6.36-rc7 and v2.6.36-rc6 do report warnings.
> > Looks like those versions flag long lines for pr_warn. Is your version
> > older or newer ?
>
> Newer. It adds pr_warn to the exempted list, not just pr_warning.
I hope there's a plan to get rid of one of these? Having two macros
doing exactly the same thing will confuse everybody.
> > Anyway, would it be possible to split the patch into one patch per file ?
>
> Oh sure. It's trivial to do that.
>
> > I don't know how Jean thinks about it, but in my opinion it would be cleaner,
> > permit revert on a single patch/file instead of having to revert the entire series,
> > it would simplify review, and it would make it much easier to cherry-pick
> > pieces into other releases if needed.
>
> Jean, do you have a preference?
> I'll resubmit if you want it separated.
Jean has no preference when sleeping.
Now Jean is awake and can express himself on the matter:
* This isn't the kind of fixes we want to cherry-pick from. We're not
fixing any bug here, are we? I certainly hope that a real bug fix
wouldn't be hidden within a larger patch, but would have the separate
patch it deserves. At which point we no longer care if the rest is
one large patch or one patch per driver.
* I don't see us reverting that kind of patch either. If we don't like
the changes for whatever reason, we don't take them in the first
place. Once in, we're not going to change our minds.
* 32 patches for a simple cleanup is actually a lot more work for me
than a single large patch. It's cheaper for me to do minor
adjustments to a large patch than to apply 32 patches individually.
* That being said, now that the hwmon subsystem maintainer is a shared
duty between Guenter and myself, there's no single place where we can
keep a patch touching many drivers and ensure it doesn't conflict
with the changes in the other tree. But I would think this is
something for Gunter and myself to sort out, not patch contributors.
I currently have pending patches to the following hwmon drivers in my
tree: adt7475, ams, asc7621, hdaps, it87, k8temp, lm75, lm85, lm90,
pcf8591, s3c-hwmon, w83795. Two of these are affected by Joe's
patch(es). Guenter, what about you?
Joe, would you mind providing a similar patch for the driver at:
http://khali.linux-fr.org/devel/misc/w83795/w83795.c
This driver will be added to kernel 2.6.37.
--
Jean Delvare
_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors
WARNING: multiple messages have this Message-ID (diff)
From: Jean Delvare <khali@linux-fr.org>
To: Joe Perches <joe@perches.com>
Cc: Guenter Roeck <guenter.roeck@ericsson.com>,
Hans de Goede <j.w.r.degoede@hhs.nl>,
Alistair John Strachan <alistair@devzero.co.uk>,
Henrik Rydberg <rydberg@euromail.se>,
"Mark M. Hoffman" <mhoffman@lightlink.com>,
Luca Tettamanti <kronos.it@gmail.com>,
Fenghua Yu <fenghua.yu@intel.com>,
Juerg Haefliger <juergh@gmail.com>,
Eric Piel <eric.piel@tremplin-utc.net>,
Jim Cromie <jim.cromie@gmail.com>,
Roger Lucas <vt8231@hiddenengine.co.uk>,
"lm-sensors@lm-sensors.org" <lm-sensors@lm-sensors.org>,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] drivers/hwmon: Use pr_fmt and pr_<level>
Date: Wed, 20 Oct 2010 09:34:38 +0200 [thread overview]
Message-ID: <20101020093438.07b129c8@endymion.delvare> (raw)
In-Reply-To: <1287547662.10409.618.camel@Joe-Laptop>
On Tue, 19 Oct 2010 21:07:42 -0700, Joe Perches wrote:
> On Tue, 2010-10-19 at 20:53 -0700, Guenter Roeck wrote:
> > On Tue, Oct 19, 2010 at 11:34:18PM -0400, Joe Perches wrote:
> > > On Tue, 2010-10-19 at 20:29 -0700, Guenter Roeck wrote:
> > > > There are several lines longer than 80 characters.
> > > > Does this rule no longer apply ?
> > > 80 columns isn't checked for printk format strings.
> > Interesting.
> > > A kernel general preference may be to keep formats as
> > > a single string without line breaks so that grep works
> > > better.
> > > > Oddly enough, there are only four checkpatch warnings about long lines,
> > > > even though there are many more.
> > > The version I use doesn't show any warnings.
> > checkpatch.pl from both v2.6.36-rc7 and v2.6.36-rc6 do report warnings.
> > Looks like those versions flag long lines for pr_warn. Is your version
> > older or newer ?
>
> Newer. It adds pr_warn to the exempted list, not just pr_warning.
I hope there's a plan to get rid of one of these? Having two macros
doing exactly the same thing will confuse everybody.
> > Anyway, would it be possible to split the patch into one patch per file ?
>
> Oh sure. It's trivial to do that.
>
> > I don't know how Jean thinks about it, but in my opinion it would be cleaner,
> > permit revert on a single patch/file instead of having to revert the entire series,
> > it would simplify review, and it would make it much easier to cherry-pick
> > pieces into other releases if needed.
>
> Jean, do you have a preference?
> I'll resubmit if you want it separated.
Jean has no preference when sleeping.
Now Jean is awake and can express himself on the matter:
* This isn't the kind of fixes we want to cherry-pick from. We're not
fixing any bug here, are we? I certainly hope that a real bug fix
wouldn't be hidden within a larger patch, but would have the separate
patch it deserves. At which point we no longer care if the rest is
one large patch or one patch per driver.
* I don't see us reverting that kind of patch either. If we don't like
the changes for whatever reason, we don't take them in the first
place. Once in, we're not going to change our minds.
* 32 patches for a simple cleanup is actually a lot more work for me
than a single large patch. It's cheaper for me to do minor
adjustments to a large patch than to apply 32 patches individually.
* That being said, now that the hwmon subsystem maintainer is a shared
duty between Guenter and myself, there's no single place where we can
keep a patch touching many drivers and ensure it doesn't conflict
with the changes in the other tree. But I would think this is
something for Gunter and myself to sort out, not patch contributors.
I currently have pending patches to the following hwmon drivers in my
tree: adt7475, ams, asc7621, hdaps, it87, k8temp, lm75, lm85, lm90,
pcf8591, s3c-hwmon, w83795. Two of these are affected by Joe's
patch(es). Guenter, what about you?
Joe, would you mind providing a similar patch for the driver at:
http://khali.linux-fr.org/devel/misc/w83795/w83795.c
This driver will be added to kernel 2.6.37.
--
Jean Delvare
next prev parent reply other threads:[~2010-10-20 7:34 UTC|newest]
Thread overview: 208+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-10-19 23:13 [lm-sensors] [PATCH] drivers/hwmon: Use pr_fmt and pr_<level> Joe Perches
2010-10-19 23:13 ` Joe Perches
2010-10-20 3:29 ` [lm-sensors] " Guenter Roeck
2010-10-20 3:29 ` Guenter Roeck
2010-10-20 3:34 ` [lm-sensors] " Joe Perches
2010-10-20 3:34 ` Joe Perches
2010-10-20 3:53 ` [lm-sensors] " Guenter Roeck
2010-10-20 3:53 ` Guenter Roeck
2010-10-20 4:07 ` [lm-sensors] " Joe Perches
2010-10-20 4:07 ` Joe Perches
2010-10-20 6:04 ` [lm-sensors] " Henrik Rydberg
2010-10-20 6:04 ` Henrik Rydberg
2010-10-20 7:34 ` Jean Delvare [this message]
2010-10-20 7:34 ` Jean Delvare
2010-10-20 14:46 ` [lm-sensors] " Guenter Roeck
2010-10-20 14:46 ` Guenter Roeck
2010-10-20 16:08 ` [lm-sensors] " Joe Perches
2010-10-20 16:08 ` Joe Perches
2010-10-20 16:45 ` [lm-sensors] " Jean Delvare
2010-10-20 16:45 ` Jean Delvare
2010-10-20 16:38 ` [lm-sensors] " Jean Delvare
2010-10-20 16:38 ` Jean Delvare
2010-10-20 16:43 ` [lm-sensors] " Guenter Roeck
2010-10-20 16:43 ` Guenter Roeck
2010-10-20 16:46 ` [lm-sensors] " Jean Delvare
2010-10-20 16:46 ` Jean Delvare
2010-10-20 18:03 ` [lm-sensors] " Guenter Roeck
2010-10-20 18:03 ` Guenter Roeck
2010-10-20 16:27 ` [lm-sensors] " Joe Perches
2010-10-20 16:27 ` Joe Perches
2010-10-20 16:42 ` [lm-sensors] " Jean Delvare
2010-10-20 16:42 ` Jean Delvare
2010-10-20 6:51 ` [lm-sensors] [PATCH 00/32] " Joe Perches
2010-10-20 6:51 ` Joe Perches
2010-10-20 6:51 ` [lm-sensors] [PATCH 01/32] drivers/hwmon/abituguru.c: Use pr_fmt Joe Perches
2010-10-20 6:51 ` [PATCH 01/32] drivers/hwmon/abituguru.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:25 ` [lm-sensors] [01/32] drivers/hwmon/abituguru.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:25 ` [01/32] drivers/hwmon/abituguru.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 02/32] drivers/hwmon/abituguru3.c: Use pr_fmt Joe Perches
2010-10-20 6:51 ` [PATCH 02/32] drivers/hwmon/abituguru3.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:28 ` [lm-sensors] [02/32] drivers/hwmon/abituguru3.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:28 ` [02/32] drivers/hwmon/abituguru3.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 03/32] drivers/hwmon/adt7470.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 03/32] drivers/hwmon/adt7470.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:29 ` [lm-sensors] [03/32] drivers/hwmon/adt7470.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:29 ` [03/32] drivers/hwmon/adt7470.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 04/32] drivers/hwmon/applesmc.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 04/32] drivers/hwmon/applesmc.c: Use pr_fmt and pr_<level> Joe Perches
2010-10-20 9:54 ` [lm-sensors] [PATCH 04/32] drivers/hwmon/applesmc.c: Use pr_fmt Henrik Rydberg
2010-10-20 9:54 ` [PATCH 04/32] drivers/hwmon/applesmc.c: Use pr_fmt and pr_<level> Henrik Rydberg
2010-11-09 16:35 ` [lm-sensors] [04/32] drivers/hwmon/applesmc.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:35 ` [04/32] drivers/hwmon/applesmc.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 05/32] drivers/hwmon/asb100.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 05/32] drivers/hwmon/asb100.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:35 ` [lm-sensors] [05/32] drivers/hwmon/asb100.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:35 ` [05/32] drivers/hwmon/asb100.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 06/32] drivers/hwmon/asus_atk0110.c: Use pr_fmt Joe Perches
2010-10-20 6:51 ` [PATCH 06/32] drivers/hwmon/asus_atk0110.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:37 ` [lm-sensors] [06/32] drivers/hwmon/asus_atk0110.c: Use pr_fmt Guenter Roeck
2010-11-09 16:37 ` [06/32] drivers/hwmon/asus_atk0110.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-11-09 20:15 ` [lm-sensors] [06/32] drivers/hwmon/asus_atk0110.c: Use pr_fmt Luca Tettamanti
2010-11-09 20:15 ` [06/32] drivers/hwmon/asus_atk0110.c: Use pr_fmt and pr_<level> Luca Tettamanti
2010-11-09 20:34 ` [lm-sensors] [06/32] drivers/hwmon/asus_atk0110.c: Use pr_fmt Guenter Roeck
2010-11-09 20:34 ` [06/32] drivers/hwmon/asus_atk0110.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 07/32] drivers/hwmon/coretemp.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 07/32] drivers/hwmon/coretemp.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:38 ` [lm-sensors] [07/32] drivers/hwmon/coretemp.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:38 ` [07/32] drivers/hwmon/coretemp.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 08/32] drivers/hwmon/dme1737.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 08/32] drivers/hwmon/dme1737.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:39 ` [lm-sensors] [08/32] drivers/hwmon/dme1737.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:39 ` [08/32] drivers/hwmon/dme1737.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 09/32] drivers/hwmon/f71805f.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 09/32] drivers/hwmon/f71805f.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:40 ` [lm-sensors] [09/32] drivers/hwmon/f71805f.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:40 ` [09/32] drivers/hwmon/f71805f.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 10/32] drivers/hwmon/f71882fg.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 10/32] drivers/hwmon/f71882fg.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:41 ` [lm-sensors] [10/32] drivers/hwmon/f71882fg.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:41 ` [10/32] drivers/hwmon/f71882fg.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 11/32] drivers/hwmon/hp_accel.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 11/32] drivers/hwmon/hp_accel.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:42 ` [lm-sensors] [11/32] drivers/hwmon/hp_accel.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:42 ` [11/32] drivers/hwmon/hp_accel.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 12/32] drivers/hwmon/hwmon-vid.c: Use pr_fmt Joe Perches
2010-10-20 6:51 ` [PATCH 12/32] drivers/hwmon/hwmon-vid.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:43 ` [lm-sensors] [12/32] drivers/hwmon/hwmon-vid.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:43 ` [12/32] drivers/hwmon/hwmon-vid.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 13/32] drivers/hwmon/hwmon.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 13/32] drivers/hwmon/hwmon.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:44 ` [lm-sensors] [13/32] drivers/hwmon/hwmon.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:44 ` [13/32] drivers/hwmon/hwmon.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 14/32] drivers/hwmon/ibmaem.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 14/32] drivers/hwmon/ibmaem.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:44 ` [lm-sensors] [14/32] drivers/hwmon/ibmaem.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:44 ` [14/32] drivers/hwmon/ibmaem.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 15/32] drivers/hwmon/it87.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 15/32] drivers/hwmon/it87.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 9:21 ` [lm-sensors] [PATCH 15/32] drivers/hwmon/it87.c: Use pr_fmt and Jean Delvare
2010-11-09 9:21 ` [PATCH 15/32] drivers/hwmon/it87.c: Use pr_fmt and pr_<level> Jean Delvare
2010-10-20 6:51 ` [lm-sensors] [PATCH 16/32] drivers/hwmon/lis3lv02d.c: Use pr_fmt Joe Perches
2010-10-20 6:51 ` [PATCH 16/32] drivers/hwmon/lis3lv02d.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:46 ` [lm-sensors] [16/32] drivers/hwmon/lis3lv02d.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:46 ` [16/32] drivers/hwmon/lis3lv02d.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 17/32] drivers/hwmon/lm70.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 17/32] drivers/hwmon/lm70.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:47 ` [lm-sensors] [17/32] drivers/hwmon/lm70.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:47 ` [17/32] drivers/hwmon/lm70.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 18/32] drivers/hwmon/lm78.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 18/32] drivers/hwmon/lm78.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 9:25 ` [lm-sensors] [PATCH 18/32] drivers/hwmon/lm78.c: Use pr_fmt and Jean Delvare
2010-11-09 9:25 ` [PATCH 18/32] drivers/hwmon/lm78.c: Use pr_fmt and pr_<level> Jean Delvare
2010-10-20 6:51 ` [lm-sensors] [PATCH 19/32] drivers/hwmon/pc87360.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 19/32] drivers/hwmon/pc87360.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 9:31 ` [lm-sensors] [PATCH 19/32] drivers/hwmon/pc87360.c: Use pr_fmt Jean Delvare
2010-11-09 9:31 ` [PATCH 19/32] drivers/hwmon/pc87360.c: Use pr_fmt and pr_<level> Jean Delvare
2010-11-09 9:59 ` [lm-sensors] [PATCH 19/32] drivers/hwmon/pc87360.c: Use pr_fmt Joe Perches
2010-11-09 9:59 ` [PATCH 19/32] drivers/hwmon/pc87360.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 12:08 ` [lm-sensors] [PATCH 19/32] drivers/hwmon/pc87360.c: Use pr_fmt Jean Delvare
2010-11-09 12:08 ` [PATCH 19/32] drivers/hwmon/pc87360.c: Use pr_fmt and pr_<level> Jean Delvare
2010-10-20 6:51 ` [lm-sensors] [PATCH 20/32] drivers/hwmon/pc87427.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 20/32] drivers/hwmon/pc87427.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 9:35 ` [lm-sensors] [PATCH 20/32] drivers/hwmon/pc87427.c: Use pr_fmt Jean Delvare
2010-11-09 9:35 ` [PATCH 20/32] drivers/hwmon/pc87427.c: Use pr_fmt and pr_<level> Jean Delvare
2010-10-20 6:51 ` [lm-sensors] [PATCH 21/32] drivers/hwmon/pcf8591.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 21/32] drivers/hwmon/pcf8591.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:49 ` [lm-sensors] [21/32] drivers/hwmon/pcf8591.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:49 ` [21/32] drivers/hwmon/pcf8591.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 22/32] drivers/hwmon/pkgtemp.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 22/32] drivers/hwmon/pkgtemp.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:50 ` [lm-sensors] [22/32] drivers/hwmon/pkgtemp.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:50 ` [22/32] drivers/hwmon/pkgtemp.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 23/32] drivers/hwmon/sis5595.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 23/32] drivers/hwmon/sis5595.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:51 ` [lm-sensors] [23/32] drivers/hwmon/sis5595.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:51 ` [23/32] drivers/hwmon/sis5595.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 24/32] drivers/hwmon/smsc47b397.c: Use pr_fmt Joe Perches
2010-10-20 6:51 ` [PATCH 24/32] drivers/hwmon/smsc47b397.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:51 ` [lm-sensors] [24/32] drivers/hwmon/smsc47b397.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:51 ` [24/32] drivers/hwmon/smsc47b397.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 25/32] drivers/hwmon/smsc47m1.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 25/32] drivers/hwmon/smsc47m1.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:52 ` [lm-sensors] [25/32] drivers/hwmon/smsc47m1.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:52 ` [25/32] drivers/hwmon/smsc47m1.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 26/32] drivers/hwmon/via-cputemp.c: Use pr_fmt Joe Perches
2010-10-20 6:51 ` [PATCH 26/32] drivers/hwmon/via-cputemp.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:53 ` [lm-sensors] [26/32] drivers/hwmon/via-cputemp.c: Use pr_fmt Guenter Roeck
2010-11-09 16:53 ` [26/32] drivers/hwmon/via-cputemp.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 27/32] drivers/hwmon/via686a.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 27/32] drivers/hwmon/via686a.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:54 ` [lm-sensors] [27/32] drivers/hwmon/via686a.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:54 ` [27/32] drivers/hwmon/via686a.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 28/32] drivers/hwmon/vt1211.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 28/32] drivers/hwmon/vt1211.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:57 ` [lm-sensors] [28/32] drivers/hwmon/vt1211.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:57 ` [28/32] drivers/hwmon/vt1211.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 29/32] drivers/hwmon/vt8231.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 29/32] drivers/hwmon/vt8231.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:58 ` [lm-sensors] [29/32] drivers/hwmon/vt8231.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:58 ` [29/32] drivers/hwmon/vt8231.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 30/32] drivers/hwmon/w83627ehf.c: Use pr_fmt Joe Perches
2010-10-20 6:51 ` [PATCH 30/32] drivers/hwmon/w83627ehf.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 16:59 ` [lm-sensors] [30/32] drivers/hwmon/w83627ehf.c: Use pr_fmt and Guenter Roeck
2010-11-09 16:59 ` [30/32] drivers/hwmon/w83627ehf.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 31/32] drivers/hwmon/w83627hf.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 31/32] drivers/hwmon/w83627hf.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 17:00 ` [lm-sensors] [31/32] drivers/hwmon/w83627hf.c: Use pr_fmt and Guenter Roeck
2010-11-09 17:00 ` [31/32] drivers/hwmon/w83627hf.c: Use pr_fmt and pr_<level> Guenter Roeck
2010-10-20 6:51 ` [lm-sensors] [PATCH 32/32] drivers/hwmon/w83781d.c: Use pr_fmt and Joe Perches
2010-10-20 6:51 ` [PATCH 32/32] drivers/hwmon/w83781d.c: Use pr_fmt and pr_<level> Joe Perches
2010-11-09 9:39 ` [lm-sensors] [PATCH 32/32] drivers/hwmon/w83781d.c: Use pr_fmt Jean Delvare
2010-11-09 9:39 ` [PATCH 32/32] drivers/hwmon/w83781d.c: Use pr_fmt and pr_<level> Jean Delvare
2010-11-09 10:04 ` [lm-sensors] [PATCH 32/32] drivers/hwmon/w83781d.c: Use pr_fmt Joe Perches
2010-11-09 10:04 ` [PATCH 32/32] drivers/hwmon/w83781d.c: Use pr_fmt and pr_<level> Joe Perches
2010-10-20 7:42 ` [lm-sensors] [PATCH] drivers/hwmon: " Jean Delvare
2010-10-20 7:42 ` Jean Delvare
2010-10-20 15:59 ` [lm-sensors] " Joe Perches
2010-10-20 15:59 ` Joe Perches
2010-10-20 16:49 ` [lm-sensors] " Guenter Roeck
2010-10-20 16:49 ` Guenter Roeck
2010-10-20 16:54 ` [lm-sensors] " Joe Perches
2010-10-20 16:54 ` Joe Perches
2010-10-20 17:18 ` [lm-sensors] " Guenter Roeck
2010-10-20 17:18 ` Guenter Roeck
2010-10-20 17:28 ` [lm-sensors] " Joe Perches
2010-10-20 17:28 ` Joe Perches
2010-10-20 17:48 ` [lm-sensors] " Guenter Roeck
2010-10-20 17:48 ` Guenter Roeck
2010-10-20 18:02 ` [lm-sensors] " Joe Perches
2010-10-20 18:02 ` Joe Perches
2010-10-20 18:35 ` [lm-sensors] " Guenter Roeck
2010-10-20 18:35 ` Guenter Roeck
2010-10-20 19:08 ` [lm-sensors] " Joe Perches
2010-10-20 19:08 ` Joe Perches
2010-10-20 19:57 ` [lm-sensors] " Jean Delvare
2010-10-20 19:57 ` Jean Delvare
2010-10-20 19:19 ` [lm-sensors] " Davidlohr Bueso
2010-10-20 19:19 ` Davidlohr Bueso
2010-10-20 19:38 ` [lm-sensors] " Jean Delvare
2010-10-20 19:38 ` Jean Delvare
2010-10-20 19:52 ` [lm-sensors] " Joe Perches
2010-10-20 19:52 ` Joe Perches
2010-10-20 19:59 ` [lm-sensors] " Joe Perches
2010-10-20 19:59 ` Joe Perches
2010-10-20 20:36 ` [lm-sensors] " Jim Cromie
2010-10-20 20:36 ` Jim Cromie
2010-10-20 20:13 ` [lm-sensors] " Jean Delvare
2010-10-20 20:13 ` Jean Delvare
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=20101020093438.07b129c8@endymion.delvare \
--to=khali@linux-fr.org \
--cc=alistair@devzero.co.uk \
--cc=eric.piel@tremplin-utc.net \
--cc=fenghua.yu@intel.com \
--cc=guenter.roeck@ericsson.com \
--cc=j.w.r.degoede@hhs.nl \
--cc=jim.cromie@gmail.com \
--cc=joe@perches.com \
--cc=juergh@gmail.com \
--cc=kronos.it@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lm-sensors@lm-sensors.org \
--cc=mhoffman@lightlink.com \
--cc=rydberg@euromail.se \
--cc=vt8231@hiddenengine.co.uk \
/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.