All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] arm64: defconfig: ak4613/renesas sound will be kernle module
@ 2017-06-19  0:23 Kuninori Morimoto
  2017-06-19  0:23 ` [PATCH 1/2] arm64: defconfig: compile ak4613 as kernel module Kuninori Morimoto
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Kuninori Morimoto @ 2017-06-19  0:23 UTC (permalink / raw)
  To: Simon; +Cc: Magnus, linux-renesas-soc


Hi Simon

These exchange Renesas sound related driver as module.
But, it doesn't exchange simple-sound-card which is
used from other platform.

Kuninori Morimoto (2):
  arm64: defconfig: compile ak4613 as kernel module
  arm64: defconfig: compile renesas sound as kernel module

 arch/arm64/configs/defconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
1.9.1

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

* [PATCH 1/2] arm64: defconfig: compile ak4613 as kernel module
  2017-06-19  0:23 [PATCH 0/2] arm64: defconfig: ak4613/renesas sound will be kernle module Kuninori Morimoto
@ 2017-06-19  0:23 ` Kuninori Morimoto
  2017-06-19  0:24 ` [PATCH 2/2] arm64: defconfig: compile renesas sound " Kuninori Morimoto
  2017-06-20 13:20 ` [PATCH 0/2] arm64: defconfig: ak4613/renesas sound will be kernle module Simon Horman
  2 siblings, 0 replies; 8+ messages in thread
From: Kuninori Morimoto @ 2017-06-19  0:23 UTC (permalink / raw)
  To: Simon; +Cc: Magnus, linux-renesas-soc


From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

ak4613 is used from Renesas platform only now.
Let's compile it as module to reduce ARM64 kernel size.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 arch/arm64/configs/defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 1e04715..3d772cc 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -365,7 +365,7 @@ CONFIG_SND_SOC=y
 CONFIG_SND_BCM2835_SOC_I2S=m
 CONFIG_SND_SOC_SAMSUNG=y
 CONFIG_SND_SOC_RCAR=y
-CONFIG_SND_SOC_AK4613=y
+CONFIG_SND_SOC_AK4613=m
 CONFIG_SND_SIMPLE_CARD=y
 CONFIG_USB=y
 CONFIG_USB_OTG=y
-- 
1.9.1

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

* [PATCH 2/2] arm64: defconfig: compile renesas sound as kernel module
  2017-06-19  0:23 [PATCH 0/2] arm64: defconfig: ak4613/renesas sound will be kernle module Kuninori Morimoto
  2017-06-19  0:23 ` [PATCH 1/2] arm64: defconfig: compile ak4613 as kernel module Kuninori Morimoto
@ 2017-06-19  0:24 ` Kuninori Morimoto
  2017-06-20 13:20 ` [PATCH 0/2] arm64: defconfig: ak4613/renesas sound will be kernle module Simon Horman
  2 siblings, 0 replies; 8+ messages in thread
From: Kuninori Morimoto @ 2017-06-19  0:24 UTC (permalink / raw)
  To: Simon; +Cc: Magnus, linux-renesas-soc


From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

Renesas sound driver is used from Renesas platform only.
Let's compile it as module to reduce ARM64 kernel size.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 arch/arm64/configs/defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 3d772cc..b046d8c 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -364,7 +364,7 @@ CONFIG_SND=y
 CONFIG_SND_SOC=y
 CONFIG_SND_BCM2835_SOC_I2S=m
 CONFIG_SND_SOC_SAMSUNG=y
-CONFIG_SND_SOC_RCAR=y
+CONFIG_SND_SOC_RCAR=m
 CONFIG_SND_SOC_AK4613=m
 CONFIG_SND_SIMPLE_CARD=y
 CONFIG_USB=y
-- 
1.9.1

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

* Re: [PATCH 0/2] arm64: defconfig: ak4613/renesas sound will be kernle module
  2017-06-19  0:23 [PATCH 0/2] arm64: defconfig: ak4613/renesas sound will be kernle module Kuninori Morimoto
  2017-06-19  0:23 ` [PATCH 1/2] arm64: defconfig: compile ak4613 as kernel module Kuninori Morimoto
  2017-06-19  0:24 ` [PATCH 2/2] arm64: defconfig: compile renesas sound " Kuninori Morimoto
@ 2017-06-20 13:20 ` Simon Horman
  2017-06-21  0:10   ` Kuninori Morimoto
  2 siblings, 1 reply; 8+ messages in thread
From: Simon Horman @ 2017-06-20 13:20 UTC (permalink / raw)
  To: Kuninori Morimoto; +Cc: Magnus, linux-renesas-soc

On Mon, Jun 19, 2017 at 12:23:22AM +0000, Kuninori Morimoto wrote:
> 
> Hi Simon
> 
> These exchange Renesas sound related driver as module.
> But, it doesn't exchange simple-sound-card which is
> used from other platform.
> 
> Kuninori Morimoto (2):
>   arm64: defconfig: compile ak4613 as kernel module
>   arm64: defconfig: compile renesas sound as kernel module

Thanks Morimoto-san,

do you mind if I squash these into one patch?

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

* Re: [PATCH 0/2] arm64: defconfig: ak4613/renesas sound will be kernle module
  2017-06-20 13:20 ` [PATCH 0/2] arm64: defconfig: ak4613/renesas sound will be kernle module Simon Horman
@ 2017-06-21  0:10   ` Kuninori Morimoto
  2017-06-21 12:03     ` Simon Horman
  0 siblings, 1 reply; 8+ messages in thread
From: Kuninori Morimoto @ 2017-06-21  0:10 UTC (permalink / raw)
  To: Simon Horman; +Cc: Magnus, linux-renesas-soc


Hi Simon

> > These exchange Renesas sound related driver as module.
> > But, it doesn't exchange simple-sound-card which is
> > used from other platform.
> > 
> > Kuninori Morimoto (2):
> >   arm64: defconfig: compile ak4613 as kernel module
> >   arm64: defconfig: compile renesas sound as kernel module
> 
> Thanks Morimoto-san,
> 
> do you mind if I squash these into one patch?

Thanks.
I have no objection about it

Best regards
---
Kuninori Morimoto

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

* Re: [PATCH 0/2] arm64: defconfig: ak4613/renesas sound will be kernle module
  2017-06-21  0:10   ` Kuninori Morimoto
@ 2017-06-21 12:03     ` Simon Horman
  2017-06-21 12:21       ` Geert Uytterhoeven
  0 siblings, 1 reply; 8+ messages in thread
From: Simon Horman @ 2017-06-21 12:03 UTC (permalink / raw)
  To: Kuninori Morimoto; +Cc: Magnus, linux-renesas-soc

On Wed, Jun 21, 2017 at 12:10:31AM +0000, Kuninori Morimoto wrote:
> 
> Hi Simon
> 
> > > These exchange Renesas sound related driver as module.
> > > But, it doesn't exchange simple-sound-card which is
> > > used from other platform.
> > > 
> > > Kuninori Morimoto (2):
> > >   arm64: defconfig: compile ak4613 as kernel module
> > >   arm64: defconfig: compile renesas sound as kernel module
> > 
> > Thanks Morimoto-san,
> > 
> > do you mind if I squash these into one patch?
> 
> Thanks.
> I have no objection about it

Thanks, I have queued up the following:

>From e21f341ad74f986a69913bc2632e474d13d2161b Mon Sep 17 00:00:00 2001
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Date: Mon, 19 Jun 2017 00:23:59 +0000
Subject: [PATCH] arm64: defconfig: compile ak4613 and renesas sound as modules

Compile the renesas sound and ak4613 drivers to reduce the ARM64 kernel
size. These modules are currently only used by Renesas platforms so
there should little risk of negative impact of this change on other users.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
[simon: consilidated two patches into one]
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm64/configs/defconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 1bbac74a0c44..dedab907b8fb 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -366,9 +366,9 @@ CONFIG_SOUND=y
 CONFIG_SND=y
 CONFIG_SND_SOC=y
 CONFIG_SND_BCM2835_SOC_I2S=m
-CONFIG_SND_SOC_RCAR=y
+CONFIG_SND_SOC_RCAR=m
 CONFIG_SND_SOC_SAMSUNG=y
-CONFIG_SND_SOC_AK4613=y
+CONFIG_SND_SOC_AK4613=m
 CONFIG_SND_SIMPLE_CARD=y
 CONFIG_USB=y
 CONFIG_USB_OTG=y
-- 
2.1.4

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

* Re: [PATCH 0/2] arm64: defconfig: ak4613/renesas sound will be kernle module
  2017-06-21 12:03     ` Simon Horman
@ 2017-06-21 12:21       ` Geert Uytterhoeven
  2017-06-22  9:02         ` Simon Horman
  0 siblings, 1 reply; 8+ messages in thread
From: Geert Uytterhoeven @ 2017-06-21 12:21 UTC (permalink / raw)
  To: Simon Horman; +Cc: Kuninori Morimoto, Magnus, Linux-Renesas

Hi Simon,

On Wed, Jun 21, 2017 at 2:03 PM, Simon Horman <horms@verge.net.au> wrote:
> Compile the renesas sound and ak4613 drivers to reduce the ARM64 kernel

... as modules ...

Else you increase size ;-)

> size. These modules are currently only used by Renesas platforms so
> there should little risk of negative impact of this change on other users.

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH 0/2] arm64: defconfig: ak4613/renesas sound will be kernle module
  2017-06-21 12:21       ` Geert Uytterhoeven
@ 2017-06-22  9:02         ` Simon Horman
  0 siblings, 0 replies; 8+ messages in thread
From: Simon Horman @ 2017-06-22  9:02 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Kuninori Morimoto, Magnus, Linux-Renesas

On Wed, Jun 21, 2017 at 02:21:11PM +0200, Geert Uytterhoeven wrote:
> Hi Simon,
> 
> On Wed, Jun 21, 2017 at 2:03 PM, Simon Horman <horms@verge.net.au> wrote:
> > Compile the renesas sound and ak4613 drivers to reduce the ARM64 kernel
> 
> ... as modules ...
> 
> Else you increase size ;-)

Thanks, fixed.

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

end of thread, other threads:[~2017-06-22  9:02 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-19  0:23 [PATCH 0/2] arm64: defconfig: ak4613/renesas sound will be kernle module Kuninori Morimoto
2017-06-19  0:23 ` [PATCH 1/2] arm64: defconfig: compile ak4613 as kernel module Kuninori Morimoto
2017-06-19  0:24 ` [PATCH 2/2] arm64: defconfig: compile renesas sound " Kuninori Morimoto
2017-06-20 13:20 ` [PATCH 0/2] arm64: defconfig: ak4613/renesas sound will be kernle module Simon Horman
2017-06-21  0:10   ` Kuninori Morimoto
2017-06-21 12:03     ` Simon Horman
2017-06-21 12:21       ` Geert Uytterhoeven
2017-06-22  9:02         ` Simon Horman

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.