Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d12c6216 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown
Browse files

ASoC: rsrc-card: rename rsrc-card to simple-scu-card phase3



rsrc-card which is using DPCM feature was created for Renesas sound.
But not only Renesas, but many SoC can use this driver, because
it is based on simple-card driver.
To use it as more open driver, rsrc-card will be renamed to
simple-scu-card. In order to easy patch review, as 3rd step,
this patch moves rsrc-card driver to generic folder.

Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 64df0e68
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -6,3 +6,10 @@ config SND_SIMPLE_CARD
	select SND_SIMPLE_CARD_UTILS
	help
	  This option enables generic simple sound card support

config SND_SIMPLE_SCU_CARD
	tristate "ASoC Simple SCU sound card support"
	select SND_SIMPLE_CARD_UTILS
	help
	  This option enables generic simple SCU sound card support.
	  It supports DPCM of multi CPU single Codec ststem.
+2 −0
Original line number Diff line number Diff line
snd-soc-simple-card-utils-objs	:= simple-card-utils.o
snd-soc-simple-card-objs	:= simple-card.o
snd-soc-simple-scu-card-objs	:= simple-scu-card.o

obj-$(CONFIG_SND_SIMPLE_CARD_UTILS)	+= snd-soc-simple-card-utils.o
obj-$(CONFIG_SND_SIMPLE_CARD)		+= snd-soc-simple-card.o
obj-$(CONFIG_SND_SIMPLE_SCU_CARD)	+= snd-soc-simple-scu-card.o
+0 −6
Original line number Diff line number Diff line
@@ -42,12 +42,6 @@ config SND_SOC_RCAR
	help
	  This option enables R-Car SRU/SCU/SSIU/SSI sound support

config SND_SOC_RSRC_CARD
	tristate "Renesas Sampling Rate Convert Sound Card"
	select SND_SIMPLE_CARD_UTILS
	help
	  This option enables simple sound if you need sampling rate convert

##
## Boards
##
Loading