mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
2835df54ab
Removed upstreamed: generic/101-Use-stddefs.h-instead-of-compiler.h.patch[1] All patches automatically rebased. 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.10.163&id=ddd2bb08bd99b7ee4442fbbe0f9b80236fdd71d2 Build system: x86_64 Build-tested: ramips/tplink_archer-a6-v3 Run-tested: ramips/tplink_archer-a6-v3 Signed-off-by: John Audia <therealgraysky@proton.me>
23 lines
742 B
Diff
23 lines
742 B
Diff
From 536581825219e97fa2ae0c4de35605d2f6311416 Mon Sep 17 00:00:00 2001
|
|
From: Vincent Tremblay <vincent@vtremblay.dev>
|
|
Date: Tue, 27 Dec 2022 09:00:58 -0500
|
|
Subject: [PATCH 2/2] spidev: Add Silicon Labs SI3210 device compatible
|
|
|
|
Add compatible string for Silicon Labs SI3210 device.
|
|
|
|
Note: This patch is adapted from a patch submitted to the for-next branch (v6.3).
|
|
|
|
Signed-off-by: Vincent Tremblay <vincent@vtremblay.dev>
|
|
---
|
|
|
|
--- a/drivers/spi/spidev.c
|
|
+++ b/drivers/spi/spidev.c
|
|
@@ -694,6 +694,7 @@ static const struct of_device_id spidev_
|
|
{ .compatible = "dh,dhcom-board" },
|
|
{ .compatible = "menlo,m53cpld" },
|
|
{ .compatible = "silabs,em3581" },
|
|
+ { .compatible = "silabs,si3210" },
|
|
{},
|
|
};
|
|
MODULE_DEVICE_TABLE(of, spidev_dt_ids);
|