* [PATCH v0 10/14] sfc: falcon: Make I2C terminology more inclusive
[not found] <20240329170038.3863998-1-eahariha@linux.microsoft.com>
@ 2024-03-29 17:00 ` Easwar Hariharan
2024-04-02 8:29 ` Simon Horman
2024-04-02 9:00 ` Martin Habets
0 siblings, 2 replies; 7+ messages in thread
From: Easwar Hariharan @ 2024-03-29 17:00 UTC (permalink / raw)
To: Edward Cree, Martin Habets, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Easwar Hariharan,
open list:SFC NETWORK DRIVER, open list:SFC NETWORK DRIVER,
open list
Cc: Wolfram Sang, open list:RADEON and AMDGPU DRM DRIVERS,
open list:DRM DRIVERS, open list,
open list:INTEL DRM DISPLAY FOR XE AND I915 DRIVERS,
open list:INTEL DRM DISPLAY FOR XE AND I915 DRIVERS,
open list:DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS,
open list:I2C SUBSYSTEM HOST DRIVERS,
open list:BTTV VIDEO4LINUX DRIVER, open list:FRAMEBUFFER LAYER
I2C v7, SMBus 3.2, and I3C specifications have replaced "master/slave"
with more appropriate terms. Inspired by and following on to Wolfram's
series to fix drivers/i2c/[1], fix the terminology for users of
I2C_ALGOBIT bitbanging interface, now that the approved verbiage exists
in the specification.
Compile tested, no functionality changes intended
[1]: https://lore.kernel.org/all/20240322132619.6389-1-wsa+renesas@sang-engineering.com/
Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>
---
drivers/net/ethernet/sfc/falcon/falcon.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/sfc/falcon/falcon.c b/drivers/net/ethernet/sfc/falcon/falcon.c
index 7a1c9337081b..147e7c8e3c02 100644
--- a/drivers/net/ethernet/sfc/falcon/falcon.c
+++ b/drivers/net/ethernet/sfc/falcon/falcon.c
@@ -367,7 +367,7 @@ static const struct i2c_algo_bit_data falcon_i2c_bit_operations = {
.getsda = falcon_getsda,
.getscl = falcon_getscl,
.udelay = 5,
- /* Wait up to 50 ms for slave to let us pull SCL high */
+ /* Wait up to 50 ms for client to let us pull SCL high */
.timeout = DIV_ROUND_UP(HZ, 20),
};
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v0 10/14] sfc: falcon: Make I2C terminology more inclusive
2024-03-29 17:00 ` [PATCH v0 10/14] sfc: falcon: Make I2C terminology more inclusive Easwar Hariharan
@ 2024-04-02 8:29 ` Simon Horman
2024-04-04 19:17 ` Easwar Hariharan
2024-04-02 9:00 ` Martin Habets
1 sibling, 1 reply; 7+ messages in thread
From: Simon Horman @ 2024-04-02 8:29 UTC (permalink / raw)
To: Easwar Hariharan
Cc: Edward Cree, Martin Habets, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, open list:SFC NETWORK DRIVER,
open list:SFC NETWORK DRIVER, open list, Wolfram Sang,
open list:RADEON and AMDGPU DRM DRIVERS, open list:DRM DRIVERS,
open list:INTEL DRM DISPLAY FOR XE AND I915 DRIVERS,
open list:INTEL DRM DISPLAY FOR XE AND I915 DRIVERS,
open list:DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS,
open list:I2C SUBSYSTEM HOST DRIVERS,
open list:BTTV VIDEO4LINUX DRIVER, open list:FRAMEBUFFER LAYER
On Fri, Mar 29, 2024 at 05:00:34PM +0000, Easwar Hariharan wrote:
> I2C v7, SMBus 3.2, and I3C specifications have replaced "master/slave"
> with more appropriate terms. Inspired by and following on to Wolfram's
> series to fix drivers/i2c/[1], fix the terminology for users of
> I2C_ALGOBIT bitbanging interface, now that the approved verbiage exists
> in the specification.
>
> Compile tested, no functionality changes intended
>
> [1]: https://lore.kernel.org/all/20240322132619.6389-1-wsa+renesas@sang-engineering.com/
>
> Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>
Reviewed-by: Simon Horman <horms@kernel.org>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v0 10/14] sfc: falcon: Make I2C terminology more inclusive
2024-03-29 17:00 ` [PATCH v0 10/14] sfc: falcon: Make I2C terminology more inclusive Easwar Hariharan
2024-04-02 8:29 ` Simon Horman
@ 2024-04-02 9:00 ` Martin Habets
2024-04-04 19:18 ` Easwar Hariharan
1 sibling, 1 reply; 7+ messages in thread
From: Martin Habets @ 2024-04-02 9:00 UTC (permalink / raw)
To: Easwar Hariharan
Cc: Edward Cree, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, open list:SFC NETWORK DRIVER,
open list:SFC NETWORK DRIVER, open list, Wolfram Sang,
open list:RADEON and AMDGPU DRM DRIVERS, open list:DRM DRIVERS,
open list:INTEL DRM DISPLAY FOR XE AND I915 DRIVERS,
open list:INTEL DRM DISPLAY FOR XE AND I915 DRIVERS,
open list:DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS,
open list:I2C SUBSYSTEM HOST DRIVERS,
open list:BTTV VIDEO4LINUX DRIVER, open list:FRAMEBUFFER LAYER
On Fri, Mar 29, 2024 at 05:00:34PM +0000, Easwar Hariharan wrote:
> I2C v7, SMBus 3.2, and I3C specifications have replaced "master/slave"
> with more appropriate terms. Inspired by and following on to Wolfram's
> series to fix drivers/i2c/[1], fix the terminology for users of
> I2C_ALGOBIT bitbanging interface, now that the approved verbiage exists
> in the specification.
>
> Compile tested, no functionality changes intended
>
> [1]: https://lore.kernel.org/all/20240322132619.6389-1-wsa+renesas@sang-engineering.com/
>
> Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>
Reviewed-by: Martin Habets <habetsm.xilinx@gmail.com>
> ---
> drivers/net/ethernet/sfc/falcon/falcon.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/sfc/falcon/falcon.c b/drivers/net/ethernet/sfc/falcon/falcon.c
> index 7a1c9337081b..147e7c8e3c02 100644
> --- a/drivers/net/ethernet/sfc/falcon/falcon.c
> +++ b/drivers/net/ethernet/sfc/falcon/falcon.c
> @@ -367,7 +367,7 @@ static const struct i2c_algo_bit_data falcon_i2c_bit_operations = {
> .getsda = falcon_getsda,
> .getscl = falcon_getscl,
> .udelay = 5,
> - /* Wait up to 50 ms for slave to let us pull SCL high */
> + /* Wait up to 50 ms for client to let us pull SCL high */
> .timeout = DIV_ROUND_UP(HZ, 20),
> };
>
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v0 10/14] sfc: falcon: Make I2C terminology more inclusive
2024-04-02 8:29 ` Simon Horman
@ 2024-04-04 19:17 ` Easwar Hariharan
2024-04-07 8:49 ` Simon Horman
0 siblings, 1 reply; 7+ messages in thread
From: Easwar Hariharan @ 2024-04-04 19:17 UTC (permalink / raw)
To: Simon Horman
Cc: Edward Cree, Martin Habets, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, open list:SFC NETWORK DRIVER,
open list:SFC NETWORK DRIVER, open list, Wolfram Sang,
open list:RADEON and AMDGPU DRM DRIVERS, open list:DRM DRIVERS,
open list:INTEL DRM DISPLAY FOR XE AND I915 DRIVERS,
open list:INTEL DRM DISPLAY FOR XE AND I915 DRIVERS,
open list:DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS,
open list:I2C SUBSYSTEM HOST DRIVERS,
open list:BTTV VIDEO4LINUX DRIVER, open list:FRAMEBUFFER LAYER
On 4/2/2024 1:29 AM, Simon Horman wrote:
> On Fri, Mar 29, 2024 at 05:00:34PM +0000, Easwar Hariharan wrote:
>> I2C v7, SMBus 3.2, and I3C specifications have replaced "master/slave"
>> with more appropriate terms. Inspired by and following on to Wolfram's
>> series to fix drivers/i2c/[1], fix the terminology for users of
>> I2C_ALGOBIT bitbanging interface, now that the approved verbiage exists
>> in the specification.
>>
>> Compile tested, no functionality changes intended
>>
>> [1]: https://lore.kernel.org/all/20240322132619.6389-1-wsa+renesas@sang-engineering.com/
>>
>> Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>
>
> Reviewed-by: Simon Horman <horms@kernel.org>
Thank you, Simon, for reviewing. I believe that we are settling on controller/target
terminology from feedback on the other drivers in this series. Would you want to re-review
v1 with that change, or should I add you R-B in v1 despite the change?
Thanks,
Easwar
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v0 10/14] sfc: falcon: Make I2C terminology more inclusive
2024-04-02 9:00 ` Martin Habets
@ 2024-04-04 19:18 ` Easwar Hariharan
2024-04-08 8:35 ` Martin Habets
0 siblings, 1 reply; 7+ messages in thread
From: Easwar Hariharan @ 2024-04-04 19:18 UTC (permalink / raw)
To: Edward Cree, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, open list:SFC NETWORK DRIVER,
open list:SFC NETWORK DRIVER, open list, Wolfram Sang,
open list:RADEON and AMDGPU DRM DRIVERS, open list:DRM DRIVERS,
open list:INTEL DRM DISPLAY FOR XE AND I915 DRIVERS,
open list:INTEL DRM DISPLAY FOR XE AND I915 DRIVERS,
open list:DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS,
open list:I2C SUBSYSTEM HOST DRIVERS,
open list:BTTV VIDEO4LINUX DRIVER, open list:FRAMEBUFFER LAYER
On 4/2/2024 2:00 AM, Martin Habets wrote:
> On Fri, Mar 29, 2024 at 05:00:34PM +0000, Easwar Hariharan wrote:
>> I2C v7, SMBus 3.2, and I3C specifications have replaced "master/slave"
>> with more appropriate terms. Inspired by and following on to Wolfram's
>> series to fix drivers/i2c/[1], fix the terminology for users of
>> I2C_ALGOBIT bitbanging interface, now that the approved verbiage exists
>> in the specification.
>>
>> Compile tested, no functionality changes intended
>>
>> [1]: https://lore.kernel.org/all/20240322132619.6389-1-wsa+renesas@sang-engineering.com/
>>
>> Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>
>
> Reviewed-by: Martin Habets <habetsm.xilinx@gmail.com>
>
Thank you, Martin, for reviewing. I believe that we are settling on controller/target
terminology from feedback on the other drivers in this series. Would you want to re-review
v1 with that change, or should I add your R-B in v1 despite the change?
Thanks,
Easwar
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v0 10/14] sfc: falcon: Make I2C terminology more inclusive
2024-04-04 19:17 ` Easwar Hariharan
@ 2024-04-07 8:49 ` Simon Horman
0 siblings, 0 replies; 7+ messages in thread
From: Simon Horman @ 2024-04-07 8:49 UTC (permalink / raw)
To: Easwar Hariharan
Cc: Edward Cree, Martin Habets, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, open list:SFC NETWORK DRIVER,
open list:SFC NETWORK DRIVER, open list, Wolfram Sang,
open list:RADEON and AMDGPU DRM DRIVERS, open list:DRM DRIVERS,
open list:INTEL DRM DISPLAY FOR XE AND I915 DRIVERS,
open list:INTEL DRM DISPLAY FOR XE AND I915 DRIVERS,
open list:DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS,
open list:I2C SUBSYSTEM HOST DRIVERS,
open list:BTTV VIDEO4LINUX DRIVER, open list:FRAMEBUFFER LAYER
On Thu, Apr 04, 2024 at 12:17:26PM -0700, Easwar Hariharan wrote:
> On 4/2/2024 1:29 AM, Simon Horman wrote:
> > On Fri, Mar 29, 2024 at 05:00:34PM +0000, Easwar Hariharan wrote:
> >> I2C v7, SMBus 3.2, and I3C specifications have replaced "master/slave"
> >> with more appropriate terms. Inspired by and following on to Wolfram's
> >> series to fix drivers/i2c/[1], fix the terminology for users of
> >> I2C_ALGOBIT bitbanging interface, now that the approved verbiage exists
> >> in the specification.
> >>
> >> Compile tested, no functionality changes intended
> >>
> >> [1]: https://lore.kernel.org/all/20240322132619.6389-1-wsa+renesas@sang-engineering.com/
> >>
> >> Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>
> >
> > Reviewed-by: Simon Horman <horms@kernel.org>
>
>
> Thank you, Simon, for reviewing. I believe that we are settling on controller/target
> terminology from feedback on the other drivers in this series. Would you want to re-review
> v1 with that change, or should I add you R-B in v1 despite the change?
Thanks for asking,
either way is fine by me.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v0 10/14] sfc: falcon: Make I2C terminology more inclusive
2024-04-04 19:18 ` Easwar Hariharan
@ 2024-04-08 8:35 ` Martin Habets
0 siblings, 0 replies; 7+ messages in thread
From: Martin Habets @ 2024-04-08 8:35 UTC (permalink / raw)
To: Easwar Hariharan
Cc: Edward Cree, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, open list:SFC NETWORK DRIVER,
open list:SFC NETWORK DRIVER, open list, Wolfram Sang,
open list:RADEON and AMDGPU DRM DRIVERS, open list:DRM DRIVERS,
open list:INTEL DRM DISPLAY FOR XE AND I915 DRIVERS,
open list:INTEL DRM DISPLAY FOR XE AND I915 DRIVERS,
open list:DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS,
open list:I2C SUBSYSTEM HOST DRIVERS,
open list:BTTV VIDEO4LINUX DRIVER, open list:FRAMEBUFFER LAYER
On Thu, Apr 04, 2024 at 12:18:06PM -0700, Easwar Hariharan wrote:
> On 4/2/2024 2:00 AM, Martin Habets wrote:
> > On Fri, Mar 29, 2024 at 05:00:34PM +0000, Easwar Hariharan wrote:
> >> I2C v7, SMBus 3.2, and I3C specifications have replaced "master/slave"
> >> with more appropriate terms. Inspired by and following on to Wolfram's
> >> series to fix drivers/i2c/[1], fix the terminology for users of
> >> I2C_ALGOBIT bitbanging interface, now that the approved verbiage exists
> >> in the specification.
> >>
> >> Compile tested, no functionality changes intended
> >>
> >> [1]: https://lore.kernel.org/all/20240322132619.6389-1-wsa+renesas@sang-engineering.com/
> >>
> >> Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>
> >
> > Reviewed-by: Martin Habets <habetsm.xilinx@gmail.com>
> >
>
> Thank you, Martin, for reviewing. I believe that we are settling on controller/target
> terminology from feedback on the other drivers in this series. Would you want to re-review
> v1 with that change, or should I add your R-B in v1 despite the change?
You can add in my Reviewed-by.
Martin
> Thanks,
> Easwar
>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-04-08 8:35 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20240329170038.3863998-1-eahariha@linux.microsoft.com>
2024-03-29 17:00 ` [PATCH v0 10/14] sfc: falcon: Make I2C terminology more inclusive Easwar Hariharan
2024-04-02 8:29 ` Simon Horman
2024-04-04 19:17 ` Easwar Hariharan
2024-04-07 8:49 ` Simon Horman
2024-04-02 9:00 ` Martin Habets
2024-04-04 19:18 ` Easwar Hariharan
2024-04-08 8:35 ` Martin Habets
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).