summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/linux/linux-omap-2.6.29/beagleboard/beagle-asoc.patch
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:14:24 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:29:45 +0100
commit29d6678fd546377459ef75cf54abeef5b969b5cf (patch)
tree8edd65790e37a00d01c3f203f773fe4b5012db18 /meta/recipes-kernel/linux/linux-omap-2.6.29/beagleboard/beagle-asoc.patch
parentda49de6885ee1bc424e70bc02f21f6ab920efb55 (diff)
downloadpoky-29d6678fd546377459ef75cf54abeef5b969b5cf.tar.gz
Major layout change to the packages directory
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-kernel/linux/linux-omap-2.6.29/beagleboard/beagle-asoc.patch')
-rw-r--r--meta/recipes-kernel/linux/linux-omap-2.6.29/beagleboard/beagle-asoc.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-omap-2.6.29/beagleboard/beagle-asoc.patch b/meta/recipes-kernel/linux/linux-omap-2.6.29/beagleboard/beagle-asoc.patch
new file mode 100644
index 0000000000..b2b920037e
--- /dev/null
+++ b/meta/recipes-kernel/linux/linux-omap-2.6.29/beagleboard/beagle-asoc.patch
@@ -0,0 +1,35 @@
1diff --git a/sound/soc/omap/Kconfig b/sound/soc/omap/Kconfig
2index 4f7f040..ccd8973 100644
3--- a/sound/soc/omap/Kconfig
4+++ b/sound/soc/omap/Kconfig
5@@ -55,3 +55,13 @@ config SND_OMAP_SOC_OMAP3_PANDORA
6 select SND_SOC_TWL4030
7 help
8 Say Y if you want to add support for SoC audio on the OMAP3 Pandora.
9+
10+config SND_OMAP_SOC_OMAP3_BEAGLE
11+ tristate "SoC Audio support for OMAP3 Beagle"
12+ depends on TWL4030_CORE && SND_OMAP_SOC && MACH_OMAP3_BEAGLE
13+ select SND_OMAP_SOC_MCBSP
14+ select SND_SOC_TWL4030
15+ help
16+ Say Y if you want to add support for SoC audio on the Beagleboard.
17+
18+
19diff --git a/sound/soc/omap/Makefile b/sound/soc/omap/Makefile
20index 76fedd9..0c9e4ac 100644
21--- a/sound/soc/omap/Makefile
22+++ b/sound/soc/omap/Makefile
23@@ -12,6 +12,7 @@ snd-soc-overo-objs := overo.o
24 snd-soc-omap2evm-objs := omap2evm.o
25 snd-soc-sdp3430-objs := sdp3430.o
26 snd-soc-omap3pandora-objs := omap3pandora.o
27+snd-soc-omap3beagle-objs := omap3beagle.o
28
29 obj-$(CONFIG_SND_OMAP_SOC_N810) += snd-soc-n810.o
30 obj-$(CONFIG_SND_OMAP_SOC_OSK5912) += snd-soc-osk5912.o
31@@ -19,3 +20,4 @@ obj-$(CONFIG_SND_OMAP_SOC_OVERO) += snd-soc-overo.o
32 obj-$(CONFIG_MACH_OMAP2EVM) += snd-soc-omap2evm.o
33 obj-$(CONFIG_SND_OMAP_SOC_SDP3430) += snd-soc-sdp3430.o
34 obj-$(CONFIG_SND_OMAP_SOC_OMAP3_PANDORA) += snd-soc-omap3pandora.o
35+obj-$(CONFIG_SND_OMAP_SOC_OMAP3_BEAGLE) += snd-soc-omap3beagle.o