linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] arm64: defconfig: Config that had RPMSG_CHAR now gets RPMSG_CTRL
@ 2022-04-05 16:11 Arnaud Pouliquen
  2022-04-06 14:48 ` Mathieu Poirier
  2022-06-01 13:25 ` Arnaud POULIQUEN
  0 siblings, 2 replies; 5+ messages in thread
From: Arnaud Pouliquen @ 2022-04-05 16:11 UTC (permalink / raw)
  To: Catalin Marinas, Will Deacon, Bjorn Andersson, Mathieu Poirier,
	linux-arm-kernel
  Cc: arnaud.pouliquen, linux-kernel, linux-remoteproc

In the commit 617d32938d1b ("rpmsg: Move the rpmsg control device
from rpmsg_char to rpmsg_ctrl"), we split the rpmsg_char driver in two.
By default give everyone who had the old driver enabled the rpmsg_ctrl
driver too.

Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
---

This patch is extracted from the series [1] that has been partially
integrated in the Linux Kernel 5.18-rc1.

Update vs previous version:
- Add missing "---" separation marker after "Signed-off-by".

[1]https://lore.kernel.org/lkml/15be2f08-ba03-2b80-6f53-2056359d5c41@gmail.com/T/
[2]https://lore.kernel.org/linux-arm-kernel/CANLsYky1_b80qPbgOaLGVYD-GEr21V6C653iGEB7VCU=GbGvAQ@mail.gmail.com/T/
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 50aa3d75ab4f..3f8906b8a2ca 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -1053,6 +1053,7 @@ CONFIG_QCOM_Q6V5_PAS=m
 CONFIG_QCOM_SYSMON=m
 CONFIG_QCOM_WCNSS_PIL=m
 CONFIG_RPMSG_CHAR=m
+CONFIG_RPMSG_CTRL=m
 CONFIG_RPMSG_QCOM_GLINK_RPM=y
 CONFIG_RPMSG_QCOM_GLINK_SMEM=m
 CONFIG_RPMSG_QCOM_SMD=y
-- 
2.25.1


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

* Re: [PATCH v3] arm64: defconfig: Config that had RPMSG_CHAR now gets RPMSG_CTRL
  2022-04-05 16:11 [PATCH v3] arm64: defconfig: Config that had RPMSG_CHAR now gets RPMSG_CTRL Arnaud Pouliquen
@ 2022-04-06 14:48 ` Mathieu Poirier
  2022-06-01 13:25 ` Arnaud POULIQUEN
  1 sibling, 0 replies; 5+ messages in thread
From: Mathieu Poirier @ 2022-04-06 14:48 UTC (permalink / raw)
  To: Arnaud Pouliquen
  Cc: Catalin Marinas, Will Deacon, Bjorn Andersson, linux-arm-kernel,
	linux-kernel, linux-remoteproc

On Tue, 5 Apr 2022 at 10:12, Arnaud Pouliquen
<arnaud.pouliquen@foss.st.com> wrote:
>
> In the commit 617d32938d1b ("rpmsg: Move the rpmsg control device
> from rpmsg_char to rpmsg_ctrl"), we split the rpmsg_char driver in two.
> By default give everyone who had the old driver enabled the rpmsg_ctrl
> driver too.
>
> Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
> ---
>
> This patch is extracted from the series [1] that has been partially
> integrated in the Linux Kernel 5.18-rc1.
>
> Update vs previous version:
> - Add missing "---" separation marker after "Signed-off-by".
>
> [1]https://lore.kernel.org/lkml/15be2f08-ba03-2b80-6f53-2056359d5c41@gmail.com/T/
> [2]https://lore.kernel.org/linux-arm-kernel/CANLsYky1_b80qPbgOaLGVYD-GEr21V6C653iGEB7VCU=GbGvAQ@mail.gmail.com/T/
> ---
>  arch/arm64/configs/defconfig | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> index 50aa3d75ab4f..3f8906b8a2ca 100644
> --- a/arch/arm64/configs/defconfig
> +++ b/arch/arm64/configs/defconfig
> @@ -1053,6 +1053,7 @@ CONFIG_QCOM_Q6V5_PAS=m
>  CONFIG_QCOM_SYSMON=m
>  CONFIG_QCOM_WCNSS_PIL=m
>  CONFIG_RPMSG_CHAR=m
> +CONFIG_RPMSG_CTRL=m
>  CONFIG_RPMSG_QCOM_GLINK_RPM=y
>  CONFIG_RPMSG_QCOM_GLINK_SMEM=m
>  CONFIG_RPMSG_QCOM_SMD=y

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

> --
> 2.25.1
>

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

* Re: [PATCH v3] arm64: defconfig: Config that had RPMSG_CHAR now gets RPMSG_CTRL
  2022-04-05 16:11 [PATCH v3] arm64: defconfig: Config that had RPMSG_CHAR now gets RPMSG_CTRL Arnaud Pouliquen
  2022-04-06 14:48 ` Mathieu Poirier
@ 2022-06-01 13:25 ` Arnaud POULIQUEN
  2022-06-01 13:50   ` Catalin Marinas
  1 sibling, 1 reply; 5+ messages in thread
From: Arnaud POULIQUEN @ 2022-06-01 13:25 UTC (permalink / raw)
  To: Catalin Marinas, Will Deacon, Bjorn Andersson, Mathieu Poirier,
	linux-arm-kernel
  Cc: linux-kernel, linux-remoteproc

Hello,

Gentle reminder.
Please notice that Mathieu replied with a "Reviewed-by".

Thanks,
Arnaud

On 4/5/22 18:11, Arnaud Pouliquen wrote:
> In the commit 617d32938d1b ("rpmsg: Move the rpmsg control device
> from rpmsg_char to rpmsg_ctrl"), we split the rpmsg_char driver in two.
> By default give everyone who had the old driver enabled the rpmsg_ctrl
> driver too.
> 
> Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
> ---
> 
> This patch is extracted from the series [1] that has been partially
> integrated in the Linux Kernel 5.18-rc1.
> 
> Update vs previous version:
> - Add missing "---" separation marker after "Signed-off-by".
> 
> [1]https://lore.kernel.org/lkml/15be2f08-ba03-2b80-6f53-2056359d5c41@gmail.com/T/
> [2]https://lore.kernel.org/linux-arm-kernel/CANLsYky1_b80qPbgOaLGVYD-GEr21V6C653iGEB7VCU=GbGvAQ@mail.gmail.com/T/
> ---
>  arch/arm64/configs/defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> index 50aa3d75ab4f..3f8906b8a2ca 100644
> --- a/arch/arm64/configs/defconfig
> +++ b/arch/arm64/configs/defconfig
> @@ -1053,6 +1053,7 @@ CONFIG_QCOM_Q6V5_PAS=m
>  CONFIG_QCOM_SYSMON=m
>  CONFIG_QCOM_WCNSS_PIL=m
>  CONFIG_RPMSG_CHAR=m
> +CONFIG_RPMSG_CTRL=m
>  CONFIG_RPMSG_QCOM_GLINK_RPM=y
>  CONFIG_RPMSG_QCOM_GLINK_SMEM=m
>  CONFIG_RPMSG_QCOM_SMD=y

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

* Re: [PATCH v3] arm64: defconfig: Config that had RPMSG_CHAR now gets RPMSG_CTRL
  2022-06-01 13:25 ` Arnaud POULIQUEN
@ 2022-06-01 13:50   ` Catalin Marinas
  2022-07-12  8:17     ` Arnaud POULIQUEN
  0 siblings, 1 reply; 5+ messages in thread
From: Catalin Marinas @ 2022-06-01 13:50 UTC (permalink / raw)
  To: Arnaud POULIQUEN
  Cc: Will Deacon, Arnd Bergmann, Bjorn Andersson, Mathieu Poirier,
	linux-arm-kernel, linux-kernel, linux-remoteproc

On Wed, Jun 01, 2022 at 03:25:42PM +0200, Arnaud POULIQUEN wrote:
> Gentle reminder.
> Please notice that Mathieu replied with a "Reviewed-by".

We usually leave the defconfig updates to the SoC team. Cc'ing Arnd.

Catalin

> Thanks,
> Arnaud
> 
> On 4/5/22 18:11, Arnaud Pouliquen wrote:
> > In the commit 617d32938d1b ("rpmsg: Move the rpmsg control device
> > from rpmsg_char to rpmsg_ctrl"), we split the rpmsg_char driver in two.
> > By default give everyone who had the old driver enabled the rpmsg_ctrl
> > driver too.
> > 
> > Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
> > ---
> > 
> > This patch is extracted from the series [1] that has been partially
> > integrated in the Linux Kernel 5.18-rc1.
> > 
> > Update vs previous version:
> > - Add missing "---" separation marker after "Signed-off-by".
> > 
> > [1]https://lore.kernel.org/lkml/15be2f08-ba03-2b80-6f53-2056359d5c41@gmail.com/T/
> > [2]https://lore.kernel.org/linux-arm-kernel/CANLsYky1_b80qPbgOaLGVYD-GEr21V6C653iGEB7VCU=GbGvAQ@mail.gmail.com/T/
> > ---
> >  arch/arm64/configs/defconfig | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> > index 50aa3d75ab4f..3f8906b8a2ca 100644
> > --- a/arch/arm64/configs/defconfig
> > +++ b/arch/arm64/configs/defconfig
> > @@ -1053,6 +1053,7 @@ CONFIG_QCOM_Q6V5_PAS=m
> >  CONFIG_QCOM_SYSMON=m
> >  CONFIG_QCOM_WCNSS_PIL=m
> >  CONFIG_RPMSG_CHAR=m
> > +CONFIG_RPMSG_CTRL=m
> >  CONFIG_RPMSG_QCOM_GLINK_RPM=y
> >  CONFIG_RPMSG_QCOM_GLINK_SMEM=m
> >  CONFIG_RPMSG_QCOM_SMD=y

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

* Re: [PATCH v3] arm64: defconfig: Config that had RPMSG_CHAR now gets RPMSG_CTRL
  2022-06-01 13:50   ` Catalin Marinas
@ 2022-07-12  8:17     ` Arnaud POULIQUEN
  0 siblings, 0 replies; 5+ messages in thread
From: Arnaud POULIQUEN @ 2022-07-12  8:17 UTC (permalink / raw)
  To: Catalin Marinas, Arnd Bergmann
  Cc: Will Deacon, Bjorn Andersson, Mathieu Poirier, linux-arm-kernel,
	linux-kernel, linux-remoteproc

Hello,

On 6/1/22 15:50, Catalin Marinas wrote:
> On Wed, Jun 01, 2022 at 03:25:42PM +0200, Arnaud POULIQUEN wrote:
>> Gentle reminder.
>> Please notice that Mathieu replied with a "Reviewed-by".
> 
> We usually leave the defconfig updates to the SoC team. Cc'ing Arnd.

This patch seems still be stalled, should I resent it?

Thanks,
Arnaud

> 
> Catalin
> 
>> Thanks,
>> Arnaud
>>
>> On 4/5/22 18:11, Arnaud Pouliquen wrote:
>>> In the commit 617d32938d1b ("rpmsg: Move the rpmsg control device
>>> from rpmsg_char to rpmsg_ctrl"), we split the rpmsg_char driver in two.
>>> By default give everyone who had the old driver enabled the rpmsg_ctrl
>>> driver too.
>>>
>>> Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
>>> ---
>>>
>>> This patch is extracted from the series [1] that has been partially
>>> integrated in the Linux Kernel 5.18-rc1.
>>>
>>> Update vs previous version:
>>> - Add missing "---" separation marker after "Signed-off-by".
>>>
>>> [1]https://lore.kernel.org/lkml/15be2f08-ba03-2b80-6f53-2056359d5c41@gmail.com/T/
>>> [2]https://lore.kernel.org/linux-arm-kernel/CANLsYky1_b80qPbgOaLGVYD-GEr21V6C653iGEB7VCU=GbGvAQ@mail.gmail.com/T/
>>> ---
>>>  arch/arm64/configs/defconfig | 1 +
>>>  1 file changed, 1 insertion(+)
>>>
>>> diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
>>> index 50aa3d75ab4f..3f8906b8a2ca 100644
>>> --- a/arch/arm64/configs/defconfig
>>> +++ b/arch/arm64/configs/defconfig
>>> @@ -1053,6 +1053,7 @@ CONFIG_QCOM_Q6V5_PAS=m
>>>  CONFIG_QCOM_SYSMON=m
>>>  CONFIG_QCOM_WCNSS_PIL=m
>>>  CONFIG_RPMSG_CHAR=m
>>> +CONFIG_RPMSG_CTRL=m
>>>  CONFIG_RPMSG_QCOM_GLINK_RPM=y
>>>  CONFIG_RPMSG_QCOM_GLINK_SMEM=m
>>>  CONFIG_RPMSG_QCOM_SMD=y

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

end of thread, other threads:[~2022-07-12  8:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-05 16:11 [PATCH v3] arm64: defconfig: Config that had RPMSG_CHAR now gets RPMSG_CTRL Arnaud Pouliquen
2022-04-06 14:48 ` Mathieu Poirier
2022-06-01 13:25 ` Arnaud POULIQUEN
2022-06-01 13:50   ` Catalin Marinas
2022-07-12  8:17     ` Arnaud POULIQUEN

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