mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-17 09:21:35 +00:00
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From efced67dd53073b67d1b7aa1e6aad861ddaf5b5e Mon Sep 17 00:00:00 2001
|
|
From: Giuseppe Lippolis <giu.lippolis@gmail.com>
|
|
Date: Thu, 16 Mar 2023 09:32:35 +0530
|
|
Subject: [PATCH 007/281] OpenWrt: 130-add-linux-spidev-compatible-si3210.patch
|
|
|
|
Add the linux,spidev compatible in spidev Several device in ramips have this binding in the dts
|
|
|
|
Signed-off-by: Giuseppe Lippolis <giu.lippolis@gmail.com>
|
|
|
|
Change-Id: Ic39209763fee59c713911ce7c9a79bfd8b4e353b
|
|
Signed-off-by: Ram Chandra Jangir <quic_rjangir@quicinc.com>
|
|
---
|
|
drivers/spi/spidev.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c
|
|
index 71c3db60e968..485c5a96367f 100644
|
|
--- a/drivers/spi/spidev.c
|
|
+++ b/drivers/spi/spidev.c
|
|
@@ -726,6 +726,7 @@ static const struct of_device_id spidev_dt_ids[] = {
|
|
{ .compatible = "menlo,m53cpld", .data = &spidev_of_check },
|
|
{ .compatible = "cisco,spi-petra", .data = &spidev_of_check },
|
|
{ .compatible = "micron,spi-authenta", .data = &spidev_of_check },
|
|
+ { .compatible = "siliconlabs,si3210" },
|
|
{},
|
|
};
|
|
MODULE_DEVICE_TABLE(of, spidev_dt_ids);
|
|
--
|
|
2.17.1
|
|
|