From: Hans de Goede <j.w.r.degoede@hhs.nl>
To: Jean Delvare <khali@linux-fr.org>
Cc: Krzysztof Helt <krzysztof.h1@wp.pl>,
Linux I2C <i2c@lm-sensors.org>,
LM Sensors <lm-sensors@lm-sensors.org>
Subject: Re: [PATCH] hwmon: (thmc50) Convert to a new-style i2c driver
Date: Wed, 16 Jul 2008 23:31:12 +0200 [thread overview]
Message-ID: <487E68A0.7070905@hhs.nl> (raw)
In-Reply-To: <20080716231438.2913afc4@hyperion.delvare>
Jean Delvare wrote:
> Hi Hans,
>
> Thanks for all the reviews :)
>
> On Wed, 16 Jul 2008 23:04:11 +0200, Hans de Goede wrote:
>> Jean Delvare wrote:
>>> The new-style thmc50 driver implements the optional detect()
>>> callback to cover the use cases of the legacy driver.
>>>
>>> Signed-off-by: Jean Delvare <khali@linux-fr.org>
>>> Cc: Krzysztof Helt <krzysztof.h1@wp.pl>
>>> @@ -307,21 +304,22 @@ static int thmc50_detect(struct i2c_adap
>>> }
>>> if (err == -ENODEV) {
>>> pr_debug("thmc50: Detection of THMC50/ADM1022 failed\n");
>>> - goto exit_free;
>>> + return err;
>>> }
>>> - data->type = kind;
>>>
>>> if (kind == adm1022) {
>>> int id = i2c_adapter_id(client->adapter);
>>> int i;
>>>
>>> type_name = "adm1022";
>>> - data->has_temp3 = (config >> 7) & 1; /* config MSB */
>>> for (i = 0; i + 1 < adm1022_temp3_num; i += 2)
>>> if (adm1022_temp3[i] == id &&
>>> - adm1022_temp3[i + 1] == address) {
>>> + adm1022_temp3[i + 1] == client->addr) {
>>> /* enable 2nd remote temp */
>>> - data->has_temp3 = 1;
>>> + config |= (1 << 7);
>>> + i2c_smbus_write_byte_data(client,
>>> + THMC50_REG_CONF,
>>> + config);
>>> break;
>>> }
>>> } else {
>> Hmm, This does not seem right, you are _writing_ to the device in a the detect
>> function changing its configuration. I understand you can no longer set
>> data->has_temp3 as there is no data yet in the detect, instead the entire loop
>> which checks if the device has temp3 forced through a module option should be
>> moved to the probe function. Writing to a config register in the detect
>> function feels wrong to me.
>
> Note that:
> * This is only done when the user passes a specific kernel module
> parameter. By default the chip configuration is left unchanged.
> * The behavior is exactly the same as those of the original code. It is
> more clearly visible now, but the original code would set
> data->has_temp3, and then call the initialization function which
> itself would write to the chip if data->has_temp3 is set.
>
> So I don't think there is any problem here. If you think that my patch
> changes the behavior, then please point this out to me, as this was not
> my intent.
>
> I am not shocked by the fact that the detect function is processing the
> module parameter. After all, the other module parameters (force,
> ignore, etc.) are also handled at this point in the code too (just
> before, actually.) And I don't want to do it later because the
> initialization function is shared between legacy clients and new-style
> ones, and module parameters should not affect new-style clients IMHO.
> Chip-specific configuration for new-style clients should be done
> through platform data, not module parameters.
>
> If you insist on doing it clean, then the solution would be to convert
> the module parameter to platform data in the detection function, and
> process that platform data in the probe function (or initialization
> function - that's pretty much the same.) If there ever is a new-style
> THMC50 or ADM1022 device, we will certainly do that anyway. But I hope
> that we agree that this is only moving the code around and not changing
> the functional behavior.
>
Hmm, me still thinks its not pretty, but I accept your explanation:
Acked-by: Hans de Goede <j.w.r.degoede@hhs.nl>
Regards,
Hans
_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors
prev parent reply other threads:[~2008-07-16 21:31 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-07-16 15:33 [PATCH] hwmon: (thmc50) Convert to a new-style i2c driver Jean Delvare
[not found] ` <20080716173316.1e8c5c42-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
2008-07-16 21:04 ` [lm-sensors] " Hans de Goede
2008-07-16 21:14 ` Jean Delvare
2008-07-16 21:31 ` Hans de Goede [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=487E68A0.7070905@hhs.nl \
--to=j.w.r.degoede@hhs.nl \
--cc=i2c@lm-sensors.org \
--cc=khali@linux-fr.org \
--cc=krzysztof.h1@wp.pl \
--cc=lm-sensors@lm-sensors.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