38 lines
1.4 KiB
Diff
38 lines
1.4 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: The-going <48602507+The-going@users.noreply.github.com>
|
||
|
Date: Wed, 2 Feb 2022 11:56:51 +0300
|
||
|
Subject: drv:spi:spidev remove warnings
|
||
|
|
||
|
Remove SPIdev warnings
|
||
|
|
||
|
- ca478cc4e563655d99fd3380d3b1217481d6da7e: The-going <48602507+The-going@users.noreply.github.com>: 'Bugfix spidev (#3737)'
|
||
|
- e7bd9b8f13af9ee054f44a422b2aca19746b9244: Tony <tonymckahan@gmail.com>: 'Add Spidev workarounds and clean patches (WIP) (#3812)'
|
||
|
- rpardini: fix for 6.4-rc5
|
||
|
---
|
||
|
drivers/spi/spidev.c | 2 ++
|
||
|
1 file changed, 2 insertions(+)
|
||
|
|
||
|
diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c
|
||
|
index d13dc15cc191..90d9a33a97bf 100644
|
||
|
--- a/drivers/spi/spidev.c
|
||
|
+++ b/drivers/spi/spidev.c
|
||
|
@@ -704,6 +704,7 @@ static const struct file_operations spidev_fops = {
|
||
|
static struct class *spidev_class;
|
||
|
|
||
|
static const struct spi_device_id spidev_spi_ids[] = {
|
||
|
+ { .name = "spi-dev" },
|
||
|
{ .name = "dh2228fv" },
|
||
|
{ .name = "ltc2488" },
|
||
|
{ .name = "sx1301" },
|
||
|
@@ -732,6 +733,7 @@ static int spidev_of_check(struct device *dev)
|
||
|
}
|
||
|
|
||
|
static const struct of_device_id spidev_dt_ids[] = {
|
||
|
+ { .compatible = "armbian,spi-dev", .data = &spidev_of_check },
|
||
|
{ .compatible = "cisco,spi-petra", .data = &spidev_of_check },
|
||
|
{ .compatible = "dh,dhcom-board", .data = &spidev_of_check },
|
||
|
{ .compatible = "lineartechnology,ltc2488", .data = &spidev_of_check },
|
||
|
--
|
||
|
Armbian
|
||
|
|