From: Heiner Kallweit <hkallweit1@gmail.com>
To: Guenter Roeck <linux@roeck-us.net>, linux-kernel@vger.kernel.org
Cc: "Arnd Bergmann" <arnd@arndb.de>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
"Thomas Weißschuh" <linux@weissschuh.net>
Subject: Re: [PATCH 1/2] eeprom: ee1004: Call i2c_new_scanned_device to instantiate thermal sensor
Date: Sun, 30 Jun 2024 00:00:26 +0200 [thread overview]
Message-ID: <e519e9f2-5e25-4ec3-afb4-42d15da941aa@gmail.com> (raw)
In-Reply-To: <20240629173716.20389-1-linux@roeck-us.net>
On 29.06.2024 19:37, Guenter Roeck wrote:
> Instantiating a device by calling i2c_new_client_device() assumes that the
> device is not already instantiated. If that is not the case, it will return
> an error and generate a misleading kernel log message.
>
> i2c i2c-0: Failed to register i2c client jc42 at 0x18 (-16)
>
> This can be reproduced by unloading the ee1004 driver and loading it again.
>
> Avoid this by calling i2c_new_scanned_device() instead, which returns
> silently if a device is already instantiated or does not exist.
>
However i2c_new_scanned_device() runs i2c_default_probe() on the device,
whilst i2c_new_client_device() doesn't access the i2c bus.
If possible I'd like to avoid this overhead.
> Fixes: 393bd1000f81 ("eeprom: ee1004: add support for temperature sensor")
> Cc: Heiner Kallweit <hkallweit1@gmail.com>
> Cc: Thomas Weißschuh <linux@weissschuh.net>
> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
> ---
> drivers/misc/eeprom/ee1004.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/misc/eeprom/ee1004.c b/drivers/misc/eeprom/ee1004.c
> index 21feebc3044c..71ca66d1df82 100644
> --- a/drivers/misc/eeprom/ee1004.c
> +++ b/drivers/misc/eeprom/ee1004.c
> @@ -185,6 +185,8 @@ BIN_ATTRIBUTE_GROUPS(ee1004);
> static void ee1004_probe_temp_sensor(struct i2c_client *client)
> {
> struct i2c_board_info info = { .type = "jc42" };
> + unsigned short addr = 0x18 | (client->addr & 7);
> + unsigned short addr_list[] = { addr, I2C_CLIENT_END };
> u8 byte14;
> int ret;
>
> @@ -193,9 +195,7 @@ static void ee1004_probe_temp_sensor(struct i2c_client *client)
> if (ret != 1 || !(byte14 & BIT(7)))
> return;
>
> - info.addr = 0x18 | (client->addr & 7);
> -
> - i2c_new_client_device(client->adapter, &info);
> + i2c_new_scanned_device(client->adapter, &info, addr_list, NULL);
> }
>
> static void ee1004_cleanup(int idx, struct ee1004_bus_data *bd)
next prev parent reply other threads:[~2024-06-29 22:00 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-29 17:37 Guenter Roeck
2024-06-29 17:37 ` [PATCH 2/2] eeprom: ee1004: Instantiate jc42 devices for DIMMS implementing Rev.1 SPD Guenter Roeck
2024-06-29 22:00 ` Heiner Kallweit [this message]
2024-06-29 22:26 ` [PATCH 1/2] eeprom: ee1004: Call i2c_new_scanned_device to instantiate thermal sensor Guenter Roeck
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=e519e9f2-5e25-4ec3-afb4-42d15da941aa@gmail.com \
--to=hkallweit1@gmail.com \
--cc=arnd@arndb.de \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=linux@weissschuh.net \
/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
all inboxes | Powered by JetHome®