-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ASoC: Ease merge difficulties from new architectures
Rather than listing lots of architectures per line in Kconfig and Makefile, causing merge conflicts all the time, have one per line in alphabetical order. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
- Loading branch information
Mark Brown
committed
Dec 18, 2008
1 parent
9cd28ab
commit 0b34a3d
Showing
2 changed files
with
15 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
snd-soc-core-objs := soc-core.o soc-dapm.o | ||
|
||
obj-$(CONFIG_SND_SOC) += snd-soc-core.o | ||
obj-$(CONFIG_SND_SOC) += codecs/ atmel/ pxa/ s3c24xx/ sh/ fsl/ davinci/ | ||
obj-$(CONFIG_SND_SOC) += omap/ au1x/ blackfin/ | ||
obj-$(CONFIG_SND_SOC) += codecs/ | ||
obj-$(CONFIG_SND_SOC) += atmel/ | ||
obj-$(CONFIG_SND_SOC) += au1x/ | ||
obj-$(CONFIG_SND_SOC) += blackfin/ | ||
obj-$(CONFIG_SND_SOC) += davinci/ | ||
obj-$(CONFIG_SND_SOC) += fsl/ | ||
obj-$(CONFIG_SND_SOC) += omap/ | ||
obj-$(CONFIG_SND_SOC) += pxa/ | ||
obj-$(CONFIG_SND_SOC) += s3c24xx/ | ||
obj-$(CONFIG_SND_SOC) += sh/ |