Manually rebased: pending-5.15/103-kbuild-export-SUBARCH.patch All other patches automatically rebased. Build system: x86_64 Build-tested: bcm2711/RPi4B, filogic/xiaomi_redmi-router-ax6000-ubootmod Run-tested: bcm2711/RPi4B, filogic/xiaomi_redmi-router-ax6000-ubootmod Signed-off-by: John Audia <therealgraysky@proton.me>
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From f7982c726e02001afc19052fe48f642dfcbc00b2 Mon Sep 17 00:00:00 2001
 | 
						|
From: Vincent Tremblay <vincent@vtremblay.dev>
 | 
						|
Date: Mon, 26 Dec 2022 21:10:37 -0500
 | 
						|
Subject: [PATCH 1/2] spidev: Add Silicon Labs EM3581 device compatible
 | 
						|
 | 
						|
Add compatible string for Silicon Labs EM3581 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>
 | 
						|
---
 | 
						|
 drivers/spi/spidev.c | 2 ++
 | 
						|
 1 file changed, 2 insertions(+)
 | 
						|
 | 
						|
--- a/drivers/spi/spidev.c
 | 
						|
+++ b/drivers/spi/spidev.c
 | 
						|
@@ -691,6 +691,7 @@ static const struct spi_device_id spidev
 | 
						|
 	{ .name = "m53cpld" },
 | 
						|
 	{ .name = "spi-petra" },
 | 
						|
 	{ .name = "spi-authenta" },
 | 
						|
+	{ .name = "em3581" },
 | 
						|
 	{},
 | 
						|
 };
 | 
						|
 MODULE_DEVICE_TABLE(spi, spidev_spi_ids);
 | 
						|
@@ -705,6 +706,7 @@ static const struct of_device_id spidev_
 | 
						|
 	{ .compatible = "menlo,m53cpld" },
 | 
						|
 	{ .compatible = "cisco,spi-petra" },
 | 
						|
 	{ .compatible = "micron,spi-authenta" },
 | 
						|
+	{ .compatible = "silabs,em3581" },
 | 
						|
 	{},
 | 
						|
 };
 | 
						|
 MODULE_DEVICE_TABLE(of, spidev_dt_ids);
 |