mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 13:48:06 +00:00
c296141d92
https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.1.105 Removed upstreamed: generic/backport-6.1/860-v6.6-bus-mhi-host-pci_generic-add-support-for-Telit-FE990.patch See: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/diff/drivers/bus/mhi/host/pci_generic.c?h=v6.1.105&id=da578d3b2d236b50e356b1a9d770ad19165de31c All other patches automatically rebased. Build system: bcm4908 bcm53xx Adjusted generic/config-6.1 for new ksym: ARM64_ERRATUM_3194386 and 3312417[2] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/diff/arch/arm64/Kconfig?h=linux-6.1.y&id=286c8ca924b220212fdeab81cb652fdaa77e38fe Signed-off-by: Zxl hhyccc <zxlhhy@gmail.com> Link: https://github.com/openwrt/openwrt/pull/16174 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
From 6c9d1fd52956c3148e847a214bae9102b1811de5 Mon Sep 17 00:00:00 2001
|
|
From: Vincent Tremblay <vincent@vtremblay.dev>
|
|
Date: Tue, 27 Dec 2022 09:10:08 -0500
|
|
Subject: [PATCH] spidev: Add Silicon Labs SI3210 device compatible
|
|
|
|
Add compatible string for Silicon Labs SI3210 device.
|
|
|
|
Signed-off-by: Vincent Tremblay <vincent@vtremblay.dev>
|
|
Link: https://lore.kernel.org/r/20221227141011.111410-2-vincent@vtremblay.dev
|
|
Signed-off-by: Mark Brown <broonie@kernel.org>
|
|
---
|
|
drivers/spi/spidev.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- a/drivers/spi/spidev.c
|
|
+++ b/drivers/spi/spidev.c
|
|
@@ -702,6 +702,7 @@ static const struct spi_device_id spidev
|
|
{ .name = "spi-petra" },
|
|
{ .name = "spi-authenta" },
|
|
{ .name = "em3581" },
|
|
+ { .name = "si3210" },
|
|
{},
|
|
};
|
|
MODULE_DEVICE_TABLE(spi, spidev_spi_ids);
|
|
@@ -730,6 +731,7 @@ static const struct of_device_id spidev_
|
|
{ .compatible = "rohm,dh2228fv", .data = &spidev_of_check },
|
|
{ .compatible = "semtech,sx1301", .data = &spidev_of_check },
|
|
{ .compatible = "silabs,em3581", .data = &spidev_of_check },
|
|
+ { .compatible = "silabs,si3210", .data = &spidev_of_check },
|
|
{},
|
|
};
|
|
MODULE_DEVICE_TABLE(of, spidev_dt_ids);
|