From: Wolfram Sang <wsa@kernel.org>
To: Florian Fainelli <f.fainelli@gmail.com>
Cc: linux-kernel@vger.kernel.org, Kamal Dasu <kdasu.kdev@gmail.com>,
Broadcom internal kernel review list
<bcm-kernel-feedback-list@broadcom.com>,
"open list:BROADCOM BRCMSTB I2C DRIVER"
<linux-i2c@vger.kernel.org>,
"moderated list:BROADCOM BCM7XXX ARM ARCHITECTURE"
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH] i2c: brcmstb: Fixed adapter named with optional interrupts
Date: Sat, 16 Jul 2022 14:40:07 +0200 [thread overview]
Message-ID: <YtKxpz7kiER8ydcj@shikoro> (raw)
In-Reply-To: <20220706172115.224240-1-f.fainelli@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 1581 bytes --]
On Wed, Jul 06, 2022 at 10:21:15AM -0700, Florian Fainelli wrote:
> When the adapter is registered without interrupts, we would be showing
> the following:
>
> # i2cdetect -l
> i2c-3 i2c Broadcom STB : I2C adapter
What about switching to pdev->name here? That way you also get the base
address for free to differentiate if there are multiple instances on the
SoC?
>
> which is visually disturbing, only add the separator if we do have an
> interrupt.
>
> Fixes: dd1aa2524bc5 ("i2c: brcmstb: Add Broadcom settop SoC i2c controller driver")
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
> ---
> drivers/i2c/busses/i2c-brcmstb.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-brcmstb.c b/drivers/i2c/busses/i2c-brcmstb.c
> index b00f35c0b066..538a51299e04 100644
> --- a/drivers/i2c/busses/i2c-brcmstb.c
> +++ b/drivers/i2c/busses/i2c-brcmstb.c
> @@ -684,9 +684,11 @@ static int brcmstb_i2c_probe(struct platform_device *pdev)
> adap = &dev->adapter;
> i2c_set_adapdata(adap, dev);
> adap->owner = THIS_MODULE;
> - strlcpy(adap->name, "Broadcom STB : ", sizeof(adap->name));
> - if (int_name)
> + strlcpy(adap->name, "Broadcom STB", sizeof(adap->name));
> + if (int_name) {
> + strlcat(adap->name, ": ", sizeof(adap->name));
> strlcat(adap->name, int_name, sizeof(adap->name));
> + }
> adap->algo = &brcmstb_i2c_algo;
> adap->dev.parent = &pdev->dev;
> adap->dev.of_node = pdev->dev.of_node;
> --
> 2.25.1
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Wolfram Sang <wsa@kernel.org>
To: Florian Fainelli <f.fainelli@gmail.com>
Cc: linux-kernel@vger.kernel.org, Kamal Dasu <kdasu.kdev@gmail.com>,
Broadcom internal kernel review list
<bcm-kernel-feedback-list@broadcom.com>,
"open list:BROADCOM BRCMSTB I2C DRIVER"
<linux-i2c@vger.kernel.org>,
"moderated list:BROADCOM BCM7XXX ARM ARCHITECTURE"
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH] i2c: brcmstb: Fixed adapter named with optional interrupts
Date: Sat, 16 Jul 2022 14:40:07 +0200 [thread overview]
Message-ID: <YtKxpz7kiER8ydcj@shikoro> (raw)
In-Reply-To: <20220706172115.224240-1-f.fainelli@gmail.com>
[-- Attachment #1.1: Type: text/plain, Size: 1581 bytes --]
On Wed, Jul 06, 2022 at 10:21:15AM -0700, Florian Fainelli wrote:
> When the adapter is registered without interrupts, we would be showing
> the following:
>
> # i2cdetect -l
> i2c-3 i2c Broadcom STB : I2C adapter
What about switching to pdev->name here? That way you also get the base
address for free to differentiate if there are multiple instances on the
SoC?
>
> which is visually disturbing, only add the separator if we do have an
> interrupt.
>
> Fixes: dd1aa2524bc5 ("i2c: brcmstb: Add Broadcom settop SoC i2c controller driver")
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
> ---
> drivers/i2c/busses/i2c-brcmstb.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-brcmstb.c b/drivers/i2c/busses/i2c-brcmstb.c
> index b00f35c0b066..538a51299e04 100644
> --- a/drivers/i2c/busses/i2c-brcmstb.c
> +++ b/drivers/i2c/busses/i2c-brcmstb.c
> @@ -684,9 +684,11 @@ static int brcmstb_i2c_probe(struct platform_device *pdev)
> adap = &dev->adapter;
> i2c_set_adapdata(adap, dev);
> adap->owner = THIS_MODULE;
> - strlcpy(adap->name, "Broadcom STB : ", sizeof(adap->name));
> - if (int_name)
> + strlcpy(adap->name, "Broadcom STB", sizeof(adap->name));
> + if (int_name) {
> + strlcat(adap->name, ": ", sizeof(adap->name));
> strlcat(adap->name, int_name, sizeof(adap->name));
> + }
> adap->algo = &brcmstb_i2c_algo;
> adap->dev.parent = &pdev->dev;
> adap->dev.of_node = pdev->dev.of_node;
> --
> 2.25.1
>
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
[-- Attachment #2: Type: text/plain, Size: 176 bytes --]
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2022-07-16 12:40 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-06 17:21 [PATCH] i2c: brcmstb: Fixed adapter named with optional interrupts Florian Fainelli
2022-07-06 17:21 ` Florian Fainelli
2022-07-16 12:40 ` Wolfram Sang [this message]
2022-07-16 12:40 ` Wolfram Sang
2022-07-19 0:15 ` Florian Fainelli
2022-07-19 0:15 ` Florian Fainelli
2022-07-19 3:57 ` Wolfram Sang
2022-07-19 3:57 ` Wolfram Sang
2022-07-19 4:06 ` Florian Fainelli
2022-07-19 4:06 ` Florian Fainelli
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=YtKxpz7kiER8ydcj@shikoro \
--to=wsa@kernel.org \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=f.fainelli@gmail.com \
--cc=kdasu.kdev@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@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.