diff options
| author | Rodrigo Vivi <[email protected]> | 2018-07-23 09:13:12 -0700 | 
|---|---|---|
| committer | Rodrigo Vivi <[email protected]> | 2018-07-23 09:13:12 -0700 | 
| commit | c74a7469f97c0f40b46e82ee979f9fb1bb6e847c (patch) | |
| tree | f2690a1a916b73ef94657fbf0e0141ae57701825 /arch/arm/mach-imx/mach-mx31_3ds.c | |
| parent | 6f15a7de86c8cf2dc09fc9e6d07047efa40ef809 (diff) | |
| parent | 500775074f88d9cf5416bed2ca19592812d62c41 (diff) | |
Merge drm/drm-next into drm-intel-next-queued
We need a backmerge to get DP_DPCD_REV_14 before we push other
i915 changes to dinq that could break compilation.
Signed-off-by: Rodrigo Vivi <[email protected]>
Diffstat (limited to 'arch/arm/mach-imx/mach-mx31_3ds.c')
| -rw-r--r-- | arch/arm/mach-imx/mach-mx31_3ds.c | 18 | 
1 files changed, 2 insertions, 16 deletions
| diff --git a/arch/arm/mach-imx/mach-mx31_3ds.c b/arch/arm/mach-imx/mach-mx31_3ds.c index 68c3f0799d5b..9d87f1dcf7bb 100644 --- a/arch/arm/mach-imx/mach-mx31_3ds.c +++ b/arch/arm/mach-imx/mach-mx31_3ds.c @@ -374,26 +374,12 @@ static struct imx_ssi_platform_data mx31_3ds_ssi_pdata = {  };  /* SPI */ -static int spi0_internal_chipselect[] = { -	MXC_SPI_CS(0), -	MXC_SPI_CS(1), -	MXC_SPI_CS(2), -}; -  static const struct spi_imx_master spi0_pdata __initconst = { -	.chipselect	= spi0_internal_chipselect, -	.num_chipselect	= ARRAY_SIZE(spi0_internal_chipselect), -}; - -static int spi1_internal_chipselect[] = { -	MXC_SPI_CS(0), -	MXC_SPI_CS(1), -	MXC_SPI_CS(2), +	.num_chipselect	= 3,  };  static const struct spi_imx_master spi1_pdata __initconst = { -	.chipselect	= spi1_internal_chipselect, -	.num_chipselect	= ARRAY_SIZE(spi1_internal_chipselect), +	.num_chipselect	= 3,  };  static struct spi_board_info mx31_3ds_spi_devs[] __initdata = { |