linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next] Documentation: devres: add missing SPI helper
@ 2022-09-17 12:26 Yang Yingliang
  2022-09-23  5:55 ` Lukas Wunner
  0 siblings, 1 reply; 4+ messages in thread
From: Yang Yingliang @ 2022-09-17 12:26 UTC (permalink / raw)
  To: linux-doc, linux-spi; +Cc: corbet, broonie

Add devm_spi_alloc_master() and devm_spi_alloc_slave() to devres.rst.
They are introduced by commit 5e844cc37a5c ("spi: Introduce device-managed
SPI controller allocation").

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 Documentation/driver-api/driver-model/devres.rst | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/driver-api/driver-model/devres.rst b/Documentation/driver-api/driver-model/devres.rst
index 76cc256c9e4f..1bd6f38dd7e3 100644
--- a/Documentation/driver-api/driver-model/devres.rst
+++ b/Documentation/driver-api/driver-model/devres.rst
@@ -437,6 +437,8 @@ SLAVE DMA ENGINE
 
 SPI
   devm_spi_register_master()
+  devm_spi_alloc_master()
+  devm_spi_alloc_slave()
 
 WATCHDOG
   devm_watchdog_register_device()
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH -next] Documentation: devres: add missing SPI helper
  2022-09-17 12:26 [PATCH -next] Documentation: devres: add missing SPI helper Yang Yingliang
@ 2022-09-23  5:55 ` Lukas Wunner
  2022-09-23  6:32   ` Yang Yingliang
  0 siblings, 1 reply; 4+ messages in thread
From: Lukas Wunner @ 2022-09-23  5:55 UTC (permalink / raw)
  To: Yang Yingliang; +Cc: linux-doc, linux-spi, corbet, broonie

On Sat, Sep 17, 2022 at 08:26:39PM +0800, Yang Yingliang wrote:
> Add devm_spi_alloc_master() and devm_spi_alloc_slave() to devres.rst.
> They are introduced by commit 5e844cc37a5c ("spi: Introduce device-managed
> SPI controller allocation").
> 
> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
> ---
>  Documentation/driver-api/driver-model/devres.rst | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/Documentation/driver-api/driver-model/devres.rst b/Documentation/driver-api/driver-model/devres.rst
> index 76cc256c9e4f..1bd6f38dd7e3 100644
> --- a/Documentation/driver-api/driver-model/devres.rst
> +++ b/Documentation/driver-api/driver-model/devres.rst
> @@ -437,6 +437,8 @@ SLAVE DMA ENGINE
>  
>  SPI
>    devm_spi_register_master()
> +  devm_spi_alloc_master()
> +  devm_spi_alloc_slave()
>  
>  WATCHDOG
>    devm_watchdog_register_device()

Putting the alloc functions above the register function would
probably be more in line with how they're used.  Apart from that:

Reviewed-by: Lukas Wunner <lukas@wunner.de>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH -next] Documentation: devres: add missing SPI helper
  2022-09-23  5:55 ` Lukas Wunner
@ 2022-09-23  6:32   ` Yang Yingliang
  2022-09-23 11:54     ` Lukas Wunner
  0 siblings, 1 reply; 4+ messages in thread
From: Yang Yingliang @ 2022-09-23  6:32 UTC (permalink / raw)
  To: Lukas Wunner; +Cc: linux-doc, linux-spi, corbet, broonie, yangyingliang

Hi Lukas,

On 2022/9/23 13:55, Lukas Wunner wrote:
> On Sat, Sep 17, 2022 at 08:26:39PM +0800, Yang Yingliang wrote:
>> Add devm_spi_alloc_master() and devm_spi_alloc_slave() to devres.rst.
>> They are introduced by commit 5e844cc37a5c ("spi: Introduce device-managed
>> SPI controller allocation").
>>
>> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
>> ---
>>   Documentation/driver-api/driver-model/devres.rst | 2 ++
>>   1 file changed, 2 insertions(+)
>>
>> diff --git a/Documentation/driver-api/driver-model/devres.rst b/Documentation/driver-api/driver-model/devres.rst
>> index 76cc256c9e4f..1bd6f38dd7e3 100644
>> --- a/Documentation/driver-api/driver-model/devres.rst
>> +++ b/Documentation/driver-api/driver-model/devres.rst
>> @@ -437,6 +437,8 @@ SLAVE DMA ENGINE
>>   
>>   SPI
>>     devm_spi_register_master()
>> +  devm_spi_alloc_master()
>> +  devm_spi_alloc_slave()
>>   
>>   WATCHDOG
>>     devm_watchdog_register_device()
> Putting the alloc functions above the register function would
> probably be more in line with how they're used.  Apart from that:
Do I need send a v2 to move up alloc functions with your review tag.

Thanks,
Yang
>
> Reviewed-by: Lukas Wunner <lukas@wunner.de>
> .

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH -next] Documentation: devres: add missing SPI helper
  2022-09-23  6:32   ` Yang Yingliang
@ 2022-09-23 11:54     ` Lukas Wunner
  0 siblings, 0 replies; 4+ messages in thread
From: Lukas Wunner @ 2022-09-23 11:54 UTC (permalink / raw)
  To: Yang Yingliang; +Cc: linux-doc, linux-spi, corbet, broonie

On Fri, Sep 23, 2022 at 02:32:42PM +0800, Yang Yingliang wrote:
> On 2022/9/23 13:55, Lukas Wunner wrote:
> > On Sat, Sep 17, 2022 at 08:26:39PM +0800, Yang Yingliang wrote:
> > > Add devm_spi_alloc_master() and devm_spi_alloc_slave() to devres.rst.
> > > They are introduced by commit 5e844cc37a5c ("spi: Introduce device-managed
> > > SPI controller allocation").
> > > 
> > > Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
> > > ---
> > >   Documentation/driver-api/driver-model/devres.rst | 2 ++
> > >   1 file changed, 2 insertions(+)
> > > 
> > > diff --git a/Documentation/driver-api/driver-model/devres.rst b/Documentation/driver-api/driver-model/devres.rst
> > > index 76cc256c9e4f..1bd6f38dd7e3 100644
> > > --- a/Documentation/driver-api/driver-model/devres.rst
> > > +++ b/Documentation/driver-api/driver-model/devres.rst
> > > @@ -437,6 +437,8 @@ SLAVE DMA ENGINE
> > >   SPI
> > >     devm_spi_register_master()
> > > +  devm_spi_alloc_master()
> > > +  devm_spi_alloc_slave()
> > >   WATCHDOG
> > >     devm_watchdog_register_device()
> > Putting the alloc functions above the register function would
> > probably be more in line with how they're used.  Apart from that:
> 
> Do I need send a v2 to move up alloc functions with your review tag.

I'm not seeing v1 of your patch in linux-next, so apparently it
hasn't been applied yet.  So yes, if you could respin that would
be great.  Please cc me both on this patch as well as any
devm_spi_alloc_master() conversions you make.

Thanks,

Lukas

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-09-23 11:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-17 12:26 [PATCH -next] Documentation: devres: add missing SPI helper Yang Yingliang
2022-09-23  5:55 ` Lukas Wunner
2022-09-23  6:32   ` Yang Yingliang
2022-09-23 11:54     ` Lukas Wunner

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).