summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanne Grunau <[email protected]>2026-04-30 23:33:25 +0200
committerTom Rini <[email protected]>2026-05-12 12:08:01 -0600
commit6df6f974312f0d92394d2e6465705ccc4e0576da (patch)
tree1d85f1f4ebf2fc0f9c06a6cac5c761c1f481b13d
parent39117feb21a357207c29490b679cfca0fbbd1a54 (diff)
spi: apple: Add "apple,t8103-spi" compatible
After discussion with the devicetree maintainers we agreed to not extend lists with the generic compatible "apple,spi" anymore [1]. Use "apple,t8103-spi" as base compatible as it is the SoC driver and bindings were originally written for. The t602x (M2 Pro/Max/Ultra) devicetrees submitted in [2] use this compatible as fallback instead of "apple,spi". Link: https://lore.kernel.org/asahi/[email protected]/ [1] Link: https://lore.kernel.org/asahi/[email protected]/ [2] Signed-off-by: Janne Grunau <[email protected]> Acked-by: Mark Kettenis <[email protected]>
-rw-r--r--drivers/spi/apple_spi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/spi/apple_spi.c b/drivers/spi/apple_spi.c
index 5f94e9f7a74..088d02e3b90 100644
--- a/drivers/spi/apple_spi.c
+++ b/drivers/spi/apple_spi.c
@@ -270,6 +270,7 @@ static int apple_spi_probe(struct udevice *dev)
}
static const struct udevice_id apple_spi_of_match[] = {
+ { .compatible = "apple,t8103-spi" },
{ .compatible = "apple,spi" },
{ /* sentinel */ }
};