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

Commit e1267371 authored by Heiko Stuebner's avatar Heiko Stuebner Committed by Kukjin Kim
Browse files

ARM: S3C24XX: Add missing DMACH_DT_PROP



Commit 2b908075 (spi: s3c64xx: add device tree support) requires
the DMACH_DT_PROP element in the dma_ch enum. It's not used on non-DT
platforms but has to be present nevertheless.

So mimic the dummy-add of DMACH_DT_PROP on s3c64xx for s3c24xx
machines, to correct the build breakage for the s3c24xx variants
using the s3c64xx-spi-driver.

Signed-off-by: default avatarHeiko Stuebner <heiko@sntech.de>
Cc: Stable <stable@vger.kernel.org>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent 0d7614f0
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -24,7 +24,8 @@
*/
*/


enum dma_ch {
enum dma_ch {
	DMACH_XD0,
	DMACH_DT_PROP = -1,	/* not yet supported, do not use */
	DMACH_XD0 = 0,
	DMACH_XD1,
	DMACH_XD1,
	DMACH_SDI,
	DMACH_SDI,
	DMACH_SPI0,
	DMACH_SPI0,