linux-doc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Documentation: Move rpmsg.rst and remoteproc.rst out of staging
@ 2025-11-14  6:57 Daniel Baluta
  2025-11-14  6:57 ` [PATCH 1/2] " Daniel Baluta
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Daniel Baluta @ 2025-11-14  6:57 UTC (permalink / raw)
  To: corbet, andersson, mathieu.poirier
  Cc: dan.j.williams, cedric.xing, pasha.tatashin, kevin.tian, skhawaja,
	daniel.baluta, yesanishhere, taimoorzaeem, linux,
	arnaud.pouliquen, linux-doc, linux-kernel, linux-remoteproc,
	rdunlap, daniel.baluta, imx

Try to find a better place for rpmsg.rst and remoteproc.rst files.
Having them in staging suggest that rpmsg / remoteproc are not mature
enough which is not true.

Daniel Baluta (2):
  Documentation: Move rpmsg.rst and remoteproc.rst out of staging
  Documentation: Fix filenames for remoteproc/rpmsg

 Documentation/driver-api/index.rst                   | 2 ++
 Documentation/{staging => driver-api}/remoteproc.rst | 2 +-
 Documentation/{staging => driver-api}/rpmsg.rst      | 4 ++--
 Documentation/staging/index.rst                      | 2 --
 MAINTAINERS                                          | 4 ++--
 5 files changed, 7 insertions(+), 7 deletions(-)
 rename Documentation/{staging => driver-api}/remoteproc.rst (99%)
 rename Documentation/{staging => driver-api}/rpmsg.rst (99%)

-- 
2.45.2


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

* [PATCH 1/2] Documentation: Move rpmsg.rst and remoteproc.rst out of staging
  2025-11-14  6:57 [PATCH 0/2] Documentation: Move rpmsg.rst and remoteproc.rst out of staging Daniel Baluta
@ 2025-11-14  6:57 ` Daniel Baluta
  2025-11-14 19:03   ` Randy Dunlap
  2025-11-14  6:57 ` [PATCH 2/2] Documentation: Fix filenames for remoteproc/rpmsg Daniel Baluta
  2025-11-18 15:59 ` [PATCH 0/2] Documentation: Move rpmsg.rst and remoteproc.rst out of staging Mathieu Poirier
  2 siblings, 1 reply; 10+ messages in thread
From: Daniel Baluta @ 2025-11-14  6:57 UTC (permalink / raw)
  To: corbet, andersson, mathieu.poirier
  Cc: dan.j.williams, cedric.xing, pasha.tatashin, kevin.tian, skhawaja,
	daniel.baluta, yesanishhere, taimoorzaeem, linux,
	arnaud.pouliquen, linux-doc, linux-kernel, linux-remoteproc,
	rdunlap, daniel.baluta, imx

rpmsg.rst and remoteproc.rst are documentation files for
mature remoteproc and rpmsg systems in the Linux kernel
so their place is not under staging.

Move them to Documentation/driver-api to better reflect that.

Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
---
 Documentation/driver-api/index.rst                   | 2 ++
 Documentation/{staging => driver-api}/remoteproc.rst | 0
 Documentation/{staging => driver-api}/rpmsg.rst      | 0
 Documentation/staging/index.rst                      | 2 --
 MAINTAINERS                                          | 4 ++--
 5 files changed, 4 insertions(+), 4 deletions(-)
 rename Documentation/{staging => driver-api}/remoteproc.rst (100%)
 rename Documentation/{staging => driver-api}/rpmsg.rst (100%)

diff --git a/Documentation/driver-api/index.rst b/Documentation/driver-api/index.rst
index baff96b5cf0b..5321a9459440 100644
--- a/Documentation/driver-api/index.rst
+++ b/Documentation/driver-api/index.rst
@@ -129,8 +129,10 @@ Subsystem-specific APIs
    pwm
    pwrseq
    regulator
+   remoteproc
    reset
    rfkill
+   rpmsg
    s390-drivers
    scsi
    serial/index
diff --git a/Documentation/staging/remoteproc.rst b/Documentation/driver-api/remoteproc.rst
similarity index 100%
rename from Documentation/staging/remoteproc.rst
rename to Documentation/driver-api/remoteproc.rst
diff --git a/Documentation/staging/rpmsg.rst b/Documentation/driver-api/rpmsg.rst
similarity index 100%
rename from Documentation/staging/rpmsg.rst
rename to Documentation/driver-api/rpmsg.rst
diff --git a/Documentation/staging/index.rst b/Documentation/staging/index.rst
index 77bae5e5328b..de6dff862a0c 100644
--- a/Documentation/staging/index.rst
+++ b/Documentation/staging/index.rst
@@ -9,8 +9,6 @@ Unsorted Documentation
    crc32
    lzo
    magic-number
-   remoteproc
-   rpmsg
    speculation
    static-keys
    xz
diff --git a/MAINTAINERS b/MAINTAINERS
index 41ded579750c..490100765611 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -21898,7 +21898,7 @@ S:	Maintained
 T:	git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
 F:	Documentation/ABI/testing/sysfs-class-remoteproc
 F:	Documentation/devicetree/bindings/remoteproc/
-F:	Documentation/staging/remoteproc.rst
+F:	Documentation/driver-api/remoteproc.rst
 F:	drivers/remoteproc/
 F:	include/linux/remoteproc.h
 F:	include/linux/remoteproc/
@@ -21910,7 +21910,7 @@ L:	linux-remoteproc@vger.kernel.org
 S:	Maintained
 T:	git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
 F:	Documentation/ABI/testing/sysfs-bus-rpmsg
-F:	Documentation/staging/rpmsg.rst
+F:	Documentation/driver-api/rpmsg.rst
 F:	drivers/rpmsg/
 F:	include/linux/rpmsg.h
 F:	include/linux/rpmsg/
-- 
2.45.2


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

* [PATCH 2/2] Documentation: Fix filenames for remoteproc/rpmsg
  2025-11-14  6:57 [PATCH 0/2] Documentation: Move rpmsg.rst and remoteproc.rst out of staging Daniel Baluta
  2025-11-14  6:57 ` [PATCH 1/2] " Daniel Baluta
@ 2025-11-14  6:57 ` Daniel Baluta
  2025-11-14 10:29   ` Bagas Sanjaya
  2025-11-14 19:03   ` Randy Dunlap
  2025-11-18 15:59 ` [PATCH 0/2] Documentation: Move rpmsg.rst and remoteproc.rst out of staging Mathieu Poirier
  2 siblings, 2 replies; 10+ messages in thread
From: Daniel Baluta @ 2025-11-14  6:57 UTC (permalink / raw)
  To: corbet, andersson, mathieu.poirier
  Cc: dan.j.williams, cedric.xing, pasha.tatashin, kevin.tian, skhawaja,
	daniel.baluta, yesanishhere, taimoorzaeem, linux,
	arnaud.pouliquen, linux-doc, linux-kernel, linux-remoteproc,
	rdunlap, daniel.baluta, imx

Fix rpmsg and remoteproc filenames references after moving
them out of staging.

Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
---
 Documentation/driver-api/remoteproc.rst | 2 +-
 Documentation/driver-api/rpmsg.rst      | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Documentation/driver-api/remoteproc.rst b/Documentation/driver-api/remoteproc.rst
index 5c226fa076d6..d7ff4694aba6 100644
--- a/Documentation/driver-api/remoteproc.rst
+++ b/Documentation/driver-api/remoteproc.rst
@@ -357,4 +357,4 @@ rpmsg virtio devices this way, if desired).
 Of course, RSC_VDEV resource entries are only good enough for static
 allocation of virtio devices. Dynamic allocations will also be made possible
 using the rpmsg bus (similar to how we already do dynamic allocations of
-rpmsg channels; read more about it in rpmsg.txt).
+rpmsg channels; read more about it in rpmsg.rst).
diff --git a/Documentation/driver-api/rpmsg.rst b/Documentation/driver-api/rpmsg.rst
index 40282cca86ca..a50c4db6679f 100644
--- a/Documentation/driver-api/rpmsg.rst
+++ b/Documentation/driver-api/rpmsg.rst
@@ -5,8 +5,8 @@ Remote Processor Messaging (rpmsg) Framework
 .. note::
 
   This document describes the rpmsg bus and how to write rpmsg drivers.
-  To learn how to add rpmsg support for new platforms, check out remoteproc.txt
-  (also a resident of Documentation/).
+  To learn how to add rpmsg support for new platforms, check out remoteproc.rst
+  (also a resident of Documentation/driver-api).
 
 Introduction
 ============
-- 
2.45.2


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

* Re: [PATCH 2/2] Documentation: Fix filenames for remoteproc/rpmsg
  2025-11-14  6:57 ` [PATCH 2/2] Documentation: Fix filenames for remoteproc/rpmsg Daniel Baluta
@ 2025-11-14 10:29   ` Bagas Sanjaya
  2025-11-14 11:33     ` Daniel Baluta
  2025-11-14 19:03   ` Randy Dunlap
  1 sibling, 1 reply; 10+ messages in thread
From: Bagas Sanjaya @ 2025-11-14 10:29 UTC (permalink / raw)
  To: Daniel Baluta, corbet, andersson, mathieu.poirier
  Cc: dan.j.williams, cedric.xing, pasha.tatashin, kevin.tian, skhawaja,
	yesanishhere, taimoorzaeem, linux, arnaud.pouliquen, linux-doc,
	linux-kernel, linux-remoteproc, rdunlap, daniel.baluta, imx

[-- Attachment #1: Type: text/plain, Size: 665 bytes --]

On Fri, Nov 14, 2025 at 08:57:45AM +0200, Daniel Baluta wrote:
>    This document describes the rpmsg bus and how to write rpmsg drivers.
> -  To learn how to add rpmsg support for new platforms, check out remoteproc.txt
> -  (also a resident of Documentation/).
> +  To learn how to add rpmsg support for new platforms, check out remoteproc.rst
> +  (also a resident of Documentation/driver-api).

I think "also a resident of ..." can be dropped, since it's redundant (it's
already covered in remoteproc.rst cross-reference which transforms into
the link when you build the docs).

Thanks.

-- 
An old man doll... just what I always wanted! - Clara

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

* Re: [PATCH 2/2] Documentation: Fix filenames for remoteproc/rpmsg
  2025-11-14 10:29   ` Bagas Sanjaya
@ 2025-11-14 11:33     ` Daniel Baluta
  2025-11-14 13:35       ` Bagas Sanjaya
  2025-11-14 15:39       ` Mathieu Poirier
  0 siblings, 2 replies; 10+ messages in thread
From: Daniel Baluta @ 2025-11-14 11:33 UTC (permalink / raw)
  To: Bagas Sanjaya
  Cc: Daniel Baluta, corbet, andersson, mathieu.poirier, dan.j.williams,
	cedric.xing, pasha.tatashin, kevin.tian, skhawaja, yesanishhere,
	taimoorzaeem, linux, arnaud.pouliquen, linux-doc, linux-kernel,
	linux-remoteproc, rdunlap, imx

On Fri, Nov 14, 2025 at 12:29 PM Bagas Sanjaya <bagasdotme@gmail.com> wrote:
>
> On Fri, Nov 14, 2025 at 08:57:45AM +0200, Daniel Baluta wrote:
> >    This document describes the rpmsg bus and how to write rpmsg drivers.
> > -  To learn how to add rpmsg support for new platforms, check out remoteproc.txt
> > -  (also a resident of Documentation/).
> > +  To learn how to add rpmsg support for new platforms, check out remoteproc.rst
> > +  (also a resident of Documentation/driver-api).
>
> I think "also a resident of ..." can be dropped, since it's redundant (it's
> already covered in remoteproc.rst cross-reference which transforms into
> the link when you build the docs).

My point here is just to move the patches to a better location without
any crucial modification.
I can send a follow up patch if this is fine with everyone.

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

* Re: [PATCH 2/2] Documentation: Fix filenames for remoteproc/rpmsg
  2025-11-14 11:33     ` Daniel Baluta
@ 2025-11-14 13:35       ` Bagas Sanjaya
  2025-11-14 15:39       ` Mathieu Poirier
  1 sibling, 0 replies; 10+ messages in thread
From: Bagas Sanjaya @ 2025-11-14 13:35 UTC (permalink / raw)
  To: Daniel Baluta
  Cc: Daniel Baluta, corbet, andersson, mathieu.poirier, dan.j.williams,
	cedric.xing, pasha.tatashin, kevin.tian, skhawaja, yesanishhere,
	taimoorzaeem, linux, arnaud.pouliquen, linux-doc, linux-kernel,
	linux-remoteproc, rdunlap, imx

On 11/14/25 18:33, Daniel Baluta wrote:
> On Fri, Nov 14, 2025 at 12:29 PM Bagas Sanjaya <bagasdotme@gmail.com> wrote:
>>
>> On Fri, Nov 14, 2025 at 08:57:45AM +0200, Daniel Baluta wrote:
>>>     This document describes the rpmsg bus and how to write rpmsg drivers.
>>> -  To learn how to add rpmsg support for new platforms, check out remoteproc.txt
>>> -  (also a resident of Documentation/).
>>> +  To learn how to add rpmsg support for new platforms, check out remoteproc.rst
>>> +  (also a resident of Documentation/driver-api).
>>
>> I think "also a resident of ..." can be dropped, since it's redundant (it's
>> already covered in remoteproc.rst cross-reference which transforms into
>> the link when you build the docs).
> 
> My point here is just to move the patches to a better location without
> any crucial modification.
> I can send a follow up patch if this is fine with everyone.

OK, thanks!

-- 
An old man doll... just what I always wanted! - Clara

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

* Re: [PATCH 2/2] Documentation: Fix filenames for remoteproc/rpmsg
  2025-11-14 11:33     ` Daniel Baluta
  2025-11-14 13:35       ` Bagas Sanjaya
@ 2025-11-14 15:39       ` Mathieu Poirier
  1 sibling, 0 replies; 10+ messages in thread
From: Mathieu Poirier @ 2025-11-14 15:39 UTC (permalink / raw)
  To: Daniel Baluta
  Cc: Bagas Sanjaya, Daniel Baluta, corbet, andersson, dan.j.williams,
	cedric.xing, pasha.tatashin, kevin.tian, skhawaja, yesanishhere,
	taimoorzaeem, linux, arnaud.pouliquen, linux-doc, linux-kernel,
	linux-remoteproc, rdunlap, imx

On Fri, Nov 14, 2025 at 01:33:57PM +0200, Daniel Baluta wrote:
> On Fri, Nov 14, 2025 at 12:29 PM Bagas Sanjaya <bagasdotme@gmail.com> wrote:
> >
> > On Fri, Nov 14, 2025 at 08:57:45AM +0200, Daniel Baluta wrote:
> > >    This document describes the rpmsg bus and how to write rpmsg drivers.
> > > -  To learn how to add rpmsg support for new platforms, check out remoteproc.txt
> > > -  (also a resident of Documentation/).
> > > +  To learn how to add rpmsg support for new platforms, check out remoteproc.rst
> > > +  (also a resident of Documentation/driver-api).
> >
> > I think "also a resident of ..." can be dropped, since it's redundant (it's
> > already covered in remoteproc.rst cross-reference which transforms into
> > the link when you build the docs).
> 
> My point here is just to move the patches to a better location without
> any crucial modification.

I agree.

> I can send a follow up patch if this is fine with everyone.

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

* Re: [PATCH 2/2] Documentation: Fix filenames for remoteproc/rpmsg
  2025-11-14  6:57 ` [PATCH 2/2] Documentation: Fix filenames for remoteproc/rpmsg Daniel Baluta
  2025-11-14 10:29   ` Bagas Sanjaya
@ 2025-11-14 19:03   ` Randy Dunlap
  1 sibling, 0 replies; 10+ messages in thread
From: Randy Dunlap @ 2025-11-14 19:03 UTC (permalink / raw)
  To: Daniel Baluta, corbet, andersson, mathieu.poirier
  Cc: dan.j.williams, cedric.xing, pasha.tatashin, kevin.tian, skhawaja,
	yesanishhere, taimoorzaeem, linux, arnaud.pouliquen, linux-doc,
	linux-kernel, linux-remoteproc, daniel.baluta, imx



On 11/13/25 10:57 PM, Daniel Baluta wrote:
> Fix rpmsg and remoteproc filenames references after moving
> them out of staging.
> 
> Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>

LGTM. Thanks.

Reviewed-by: Randy Dunlap <rdunlap@infradead.org>

> ---
>  Documentation/driver-api/remoteproc.rst | 2 +-
>  Documentation/driver-api/rpmsg.rst      | 4 ++--
>  2 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/Documentation/driver-api/remoteproc.rst b/Documentation/driver-api/remoteproc.rst
> index 5c226fa076d6..d7ff4694aba6 100644
> --- a/Documentation/driver-api/remoteproc.rst
> +++ b/Documentation/driver-api/remoteproc.rst
> @@ -357,4 +357,4 @@ rpmsg virtio devices this way, if desired).
>  Of course, RSC_VDEV resource entries are only good enough for static
>  allocation of virtio devices. Dynamic allocations will also be made possible
>  using the rpmsg bus (similar to how we already do dynamic allocations of
> -rpmsg channels; read more about it in rpmsg.txt).
> +rpmsg channels; read more about it in rpmsg.rst).
> diff --git a/Documentation/driver-api/rpmsg.rst b/Documentation/driver-api/rpmsg.rst
> index 40282cca86ca..a50c4db6679f 100644
> --- a/Documentation/driver-api/rpmsg.rst
> +++ b/Documentation/driver-api/rpmsg.rst
> @@ -5,8 +5,8 @@ Remote Processor Messaging (rpmsg) Framework
>  .. note::
>  
>    This document describes the rpmsg bus and how to write rpmsg drivers.
> -  To learn how to add rpmsg support for new platforms, check out remoteproc.txt
> -  (also a resident of Documentation/).
> +  To learn how to add rpmsg support for new platforms, check out remoteproc.rst
> +  (also a resident of Documentation/driver-api).
>  
>  Introduction
>  ============

-- 
~Randy

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

* Re: [PATCH 1/2] Documentation: Move rpmsg.rst and remoteproc.rst out of staging
  2025-11-14  6:57 ` [PATCH 1/2] " Daniel Baluta
@ 2025-11-14 19:03   ` Randy Dunlap
  0 siblings, 0 replies; 10+ messages in thread
From: Randy Dunlap @ 2025-11-14 19:03 UTC (permalink / raw)
  To: Daniel Baluta, corbet, andersson, mathieu.poirier
  Cc: dan.j.williams, cedric.xing, pasha.tatashin, kevin.tian, skhawaja,
	yesanishhere, taimoorzaeem, linux, arnaud.pouliquen, linux-doc,
	linux-kernel, linux-remoteproc, daniel.baluta, imx



On 11/13/25 10:57 PM, Daniel Baluta wrote:
> rpmsg.rst and remoteproc.rst are documentation files for
> mature remoteproc and rpmsg systems in the Linux kernel
> so their place is not under staging.
> 
> Move them to Documentation/driver-api to better reflect that.
> 
> Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>

LGTM. Thanks.

Reviewed-by: Randy Dunlap <rdunlap@infradead.org>

> ---
>  Documentation/driver-api/index.rst                   | 2 ++
>  Documentation/{staging => driver-api}/remoteproc.rst | 0
>  Documentation/{staging => driver-api}/rpmsg.rst      | 0
>  Documentation/staging/index.rst                      | 2 --
>  MAINTAINERS                                          | 4 ++--
>  5 files changed, 4 insertions(+), 4 deletions(-)
>  rename Documentation/{staging => driver-api}/remoteproc.rst (100%)
>  rename Documentation/{staging => driver-api}/rpmsg.rst (100%)
> 
> diff --git a/Documentation/driver-api/index.rst b/Documentation/driver-api/index.rst
> index baff96b5cf0b..5321a9459440 100644
> --- a/Documentation/driver-api/index.rst
> +++ b/Documentation/driver-api/index.rst
> @@ -129,8 +129,10 @@ Subsystem-specific APIs
>     pwm
>     pwrseq
>     regulator
> +   remoteproc
>     reset
>     rfkill
> +   rpmsg
>     s390-drivers
>     scsi
>     serial/index
> diff --git a/Documentation/staging/remoteproc.rst b/Documentation/driver-api/remoteproc.rst
> similarity index 100%
> rename from Documentation/staging/remoteproc.rst
> rename to Documentation/driver-api/remoteproc.rst
> diff --git a/Documentation/staging/rpmsg.rst b/Documentation/driver-api/rpmsg.rst
> similarity index 100%
> rename from Documentation/staging/rpmsg.rst
> rename to Documentation/driver-api/rpmsg.rst
> diff --git a/Documentation/staging/index.rst b/Documentation/staging/index.rst
> index 77bae5e5328b..de6dff862a0c 100644
> --- a/Documentation/staging/index.rst
> +++ b/Documentation/staging/index.rst
> @@ -9,8 +9,6 @@ Unsorted Documentation
>     crc32
>     lzo
>     magic-number
> -   remoteproc
> -   rpmsg
>     speculation
>     static-keys
>     xz
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 41ded579750c..490100765611 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -21898,7 +21898,7 @@ S:	Maintained
>  T:	git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
>  F:	Documentation/ABI/testing/sysfs-class-remoteproc
>  F:	Documentation/devicetree/bindings/remoteproc/
> -F:	Documentation/staging/remoteproc.rst
> +F:	Documentation/driver-api/remoteproc.rst
>  F:	drivers/remoteproc/
>  F:	include/linux/remoteproc.h
>  F:	include/linux/remoteproc/
> @@ -21910,7 +21910,7 @@ L:	linux-remoteproc@vger.kernel.org
>  S:	Maintained
>  T:	git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
>  F:	Documentation/ABI/testing/sysfs-bus-rpmsg
> -F:	Documentation/staging/rpmsg.rst
> +F:	Documentation/driver-api/rpmsg.rst
>  F:	drivers/rpmsg/
>  F:	include/linux/rpmsg.h
>  F:	include/linux/rpmsg/

-- 
~Randy

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

* Re: [PATCH 0/2] Documentation: Move rpmsg.rst and remoteproc.rst out of staging
  2025-11-14  6:57 [PATCH 0/2] Documentation: Move rpmsg.rst and remoteproc.rst out of staging Daniel Baluta
  2025-11-14  6:57 ` [PATCH 1/2] " Daniel Baluta
  2025-11-14  6:57 ` [PATCH 2/2] Documentation: Fix filenames for remoteproc/rpmsg Daniel Baluta
@ 2025-11-18 15:59 ` Mathieu Poirier
  2 siblings, 0 replies; 10+ messages in thread
From: Mathieu Poirier @ 2025-11-18 15:59 UTC (permalink / raw)
  To: Daniel Baluta
  Cc: corbet, andersson, dan.j.williams, cedric.xing, pasha.tatashin,
	kevin.tian, skhawaja, yesanishhere, taimoorzaeem, linux,
	arnaud.pouliquen, linux-doc, linux-kernel, linux-remoteproc,
	rdunlap, daniel.baluta, imx

On Fri, Nov 14, 2025 at 08:57:43AM +0200, Daniel Baluta wrote:
> Try to find a better place for rpmsg.rst and remoteproc.rst files.
> Having them in staging suggest that rpmsg / remoteproc are not mature
> enough which is not true.
> 
> Daniel Baluta (2):
>   Documentation: Move rpmsg.rst and remoteproc.rst out of staging
>   Documentation: Fix filenames for remoteproc/rpmsg
> 
>  Documentation/driver-api/index.rst                   | 2 ++
>  Documentation/{staging => driver-api}/remoteproc.rst | 2 +-
>  Documentation/{staging => driver-api}/rpmsg.rst      | 4 ++--
>  Documentation/staging/index.rst                      | 2 --
>  MAINTAINERS                                          | 4 ++--
>  5 files changed, 7 insertions(+), 7 deletions(-)
>  rename Documentation/{staging => driver-api}/remoteproc.rst (99%)
>  rename Documentation/{staging => driver-api}/rpmsg.rst (99%)

Reviewed-by: Mathieu Poirier <mathieu.poirier@linaro.org>

> 
> -- 
> 2.45.2
> 

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

end of thread, other threads:[~2025-11-18 15:59 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-14  6:57 [PATCH 0/2] Documentation: Move rpmsg.rst and remoteproc.rst out of staging Daniel Baluta
2025-11-14  6:57 ` [PATCH 1/2] " Daniel Baluta
2025-11-14 19:03   ` Randy Dunlap
2025-11-14  6:57 ` [PATCH 2/2] Documentation: Fix filenames for remoteproc/rpmsg Daniel Baluta
2025-11-14 10:29   ` Bagas Sanjaya
2025-11-14 11:33     ` Daniel Baluta
2025-11-14 13:35       ` Bagas Sanjaya
2025-11-14 15:39       ` Mathieu Poirier
2025-11-14 19:03   ` Randy Dunlap
2025-11-18 15:59 ` [PATCH 0/2] Documentation: Move rpmsg.rst and remoteproc.rst out of staging Mathieu Poirier

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