projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7383674
)
spi: mediatek: add spi support for mt2712 IC
author
leilk.liu@mediatek.com
<leilk.liu@mediatek.com>
Tue, 20 Jun 2017 08:21:07 +0000
(16:21 +0800)
committer
Mark Brown
<broonie@kernel.org>
Tue, 20 Jun 2017 12:39:14 +0000
(13:39 +0100)
this patch add support for mt2712 IC.
Signed-off-by: Leilk Liu <leilk.liu@mediatek.com>
Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-mt65xx.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/spi/spi-mt65xx.c
b/drivers/spi/spi-mt65xx.c
index ec7755b7a94bef5074b75b83169945ce967700da..86bf45667a0402c43ab76057dc01d2527f35457c 100644
(file)
--- a/
drivers/spi/spi-mt65xx.c
+++ b/
drivers/spi/spi-mt65xx.c
@@
-105,6
+105,10
@@
struct mtk_spi {
static const struct mtk_spi_compatible mtk_common_compat;
+static const struct mtk_spi_compatible mt2712_compat = {
+ .must_tx = true,
+};
+
static const struct mtk_spi_compatible mt7622_compat = {
.must_tx = true,
.enhance_timing = true,
@@
-130,6
+134,9
@@
static const struct of_device_id mtk_spi_of_match[] = {
{ .compatible = "mediatek,mt2701-spi",
.data = (void *)&mtk_common_compat,
},
+ { .compatible = "mediatek,mt2712-spi",
+ .data = (void *)&mt2712_compat,
+ },
{ .compatible = "mediatek,mt6589-spi",
.data = (void *)&mtk_common_compat,
},