diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-13 13:39:26 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-13 13:39:26 -0500 |
commit | db5b0ae00712b5176d7405e7a1dd2bfd6e8f5070 (patch) | |
tree | 4e874d81ca9037dda1007178bbc9613649d43305 /arch/arm/mach-ux500/board-mop500-audio.c | |
parent | 6be35c700f742e911ecedd07fcc43d4439922334 (diff) | |
parent | 64507dd7028e3e0145077e73b8374bd75aea117c (diff) |
Merge tag 'dt' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
Pull ARM SoC device tree conversions and enablement from Olof Johansson:
"Continued device tree conversion and enablement across a number of
platforms; Kirkwood, tegra, i.MX, Exynos, zynq and a couple of other
smaller series as well.
ux500 has seen continued conversion for platforms. Several platforms
have seen pinctrl-via-devicetree conversions for simpler
multiplatform. Tegra is adding data for new devices/drivers, and
Exynos has a bunch of new bindings and devices added as well.
So, pretty much the same progression in the right direction as the
last few releases."
Fix up conflicts as per Olof.
* tag 'dt' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (185 commits)
ARM: ux500: Rename dbx500 cpufreq code to be more generic
ARM: dts: add missing ux500 device trees
ARM: ux500: Stop registering the PCM driver from platform code
ARM: ux500: Move board specific GPIO info out to subordinate DTS files
ARM: ux500: Disable the MMCI gpio-regulator by default
ARM: Kirkwood: remove kirkwood_ehci_init() from new boards
ARM: Kirkwood: Add support LED of OpenBlocks A6
ARM: Kirkwood: Convert to EHCI via DT for OpenBlocks A6
ARM: kirkwood: Add NAND partiton map for OpenBlocks A6
ARM: kirkwood: Add support second I2C bus and RTC on OpenBlocks A6
ARM: kirkwood: Add support DT of second I2C bus
ARM: kirkwood: Convert mplcec4 board to pinctrl
ARM: Kirkwood: Convert km_kirkwood to pinctrl
ARM: Kirkwood: support 98DX412x kirkwoods with pinctrl
ARM: Kirkwood: Convert IX2-200 to pinctrl.
ARM: Kirkwood: Convert lsxl boards to pinctrl.
ARM: Kirkwood: Convert ib62x0 to pinctrl.
ARM: Kirkwood: Convert GoFlex Net to pinctrl.
ARM: Kirkwood: Convert dreamplug to pinctrl.
ARM: Kirkwood: Convert dockstar to pinctrl.
...
Diffstat (limited to 'arch/arm/mach-ux500/board-mop500-audio.c')
-rw-r--r-- | arch/arm/mach-ux500/board-mop500-audio.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/arch/arm/mach-ux500/board-mop500-audio.c b/arch/arm/mach-ux500/board-mop500-audio.c index 33631c9f1218..bde91a58e105 100644 --- a/arch/arm/mach-ux500/board-mop500-audio.c +++ b/arch/arm/mach-ux500/board-mop500-audio.c | |||
@@ -149,15 +149,6 @@ static struct platform_device snd_soc_mop500 = { | |||
149 | }, | 149 | }, |
150 | }; | 150 | }; |
151 | 151 | ||
152 | /* Platform device for Ux500-PCM */ | ||
153 | static struct platform_device ux500_pcm = { | ||
154 | .name = "ux500-pcm", | ||
155 | .id = 0, | ||
156 | .dev = { | ||
157 | .platform_data = NULL, | ||
158 | }, | ||
159 | }; | ||
160 | |||
161 | struct msp_i2s_platform_data msp2_platform_data = { | 152 | struct msp_i2s_platform_data msp2_platform_data = { |
162 | .id = MSP_I2S_2, | 153 | .id = MSP_I2S_2, |
163 | .msp_i2s_dma_rx = &msp2_dma_rx, | 154 | .msp_i2s_dma_rx = &msp2_dma_rx, |
@@ -185,10 +176,3 @@ void mop500_audio_init(struct device *parent) | |||
185 | db8500_add_msp_i2s(parent, 3, U8500_MSP3_BASE, IRQ_DB8500_MSP1, | 176 | db8500_add_msp_i2s(parent, 3, U8500_MSP3_BASE, IRQ_DB8500_MSP1, |
186 | &msp3_platform_data); | 177 | &msp3_platform_data); |
187 | } | 178 | } |
188 | |||
189 | /* Due for removal once the MSP driver has been fully DT:ed. */ | ||
190 | void mop500_of_audio_init(struct device *parent) | ||
191 | { | ||
192 | pr_info("%s: Register platform-device 'ux500-pcm'\n", __func__); | ||
193 | platform_device_register(&ux500_pcm); | ||
194 | } | ||