Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: pxa: ssp: Fix build error by removing originally incorrect DT binding

Commit 03fbf488cece ("spi: pxa2xx: Differentiate Intel LPSS types") caused
build error here because it removed the type LPSS_SSP and I didn't notice
the type was used here too.

I believe commit a6e56c28a178 ("ARM: pxa: ssp: add DT bindings") added it
accidentally by copying all enum pxa_ssp_type types from
include/linux/pxa2xx_ssp.h even LPSS_SSP was for Intel LPSS SPI devices.

Fix the build error by removing this incorrect binding.

Fixes: 03fbf488cece ("spi: pxa2xx: Differentiate Intel LPSS types")
Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Reported-by: Axel Lin <axel.lin@ingics.com>
Cc: <stable@vger.kernel.org> # 4.2
Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>

authored by

Jarkko Nikula and committed by
Robert Jarzmik
b692cb83 adf3442c

-1
-1
arch/arm/plat-pxa/ssp.c
··· 107 107 { .compatible = "mvrl,pxa168-ssp", .data = (void *) PXA168_SSP }, 108 108 { .compatible = "mrvl,pxa910-ssp", .data = (void *) PXA910_SSP }, 109 109 { .compatible = "mrvl,ce4100-ssp", .data = (void *) CE4100_SSP }, 110 - { .compatible = "mrvl,lpss-ssp", .data = (void *) LPSS_SSP }, 111 110 { }, 112 111 }; 113 112 MODULE_DEVICE_TABLE(of, pxa_ssp_of_ids);