mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 14:04:26 -04:00 
			
		
		
		
	They add NVMEM layouts support. It allows handling NVMEM content independently of NVMEM device access. Skip U-Boot env data patch for now as it break our downstream MAC hacks. Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From bcd1fe07def0f070eb5f31594620aaee6f81d31a Mon Sep 17 00:00:00 2001
 | |
| From: Nick Alcock <nick.alcock@oracle.com>
 | |
| Date: Tue, 4 Apr 2023 18:21:11 +0100
 | |
| Subject: [PATCH] nvmem: xilinx: zynqmp: make modular
 | |
| 
 | |
| This driver has a MODULE_LICENSE but is not tristate so cannot be
 | |
| built as a module, unlike all its peers: make it modular to match.
 | |
| 
 | |
| Signed-off-by: Nick Alcock <nick.alcock@oracle.com>
 | |
| Suggested-by: Michal Simek <michal.simek@amd.com>
 | |
| Cc: Luis Chamberlain <mcgrof@kernel.org>
 | |
| Cc: linux-modules@vger.kernel.org
 | |
| Cc: linux-kernel@vger.kernel.org
 | |
| Cc: Hitomi Hasegawa <hasegawa-hitomi@fujitsu.com>
 | |
| Cc: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
 | |
| Cc: Michal Simek <michal.simek@xilinx.com>
 | |
| Cc: linux-arm-kernel@lists.infradead.org
 | |
| Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
 | |
| Link: https://lore.kernel.org/r/20230404172148.82422-4-srinivas.kandagatla@linaro.org
 | |
| Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
 | |
| ---
 | |
|  drivers/nvmem/Kconfig | 2 +-
 | |
|  1 file changed, 1 insertion(+), 1 deletion(-)
 | |
| 
 | |
| --- a/drivers/nvmem/Kconfig
 | |
| +++ b/drivers/nvmem/Kconfig
 | |
| @@ -368,7 +368,7 @@ config NVMEM_VF610_OCOTP
 | |
|  	  be called nvmem-vf610-ocotp.
 | |
|  
 | |
|  config NVMEM_ZYNQMP
 | |
| -	bool "Xilinx ZYNQMP SoC nvmem firmware support"
 | |
| +	tristate "Xilinx ZYNQMP SoC nvmem firmware support"
 | |
|  	depends on ARCH_ZYNQMP
 | |
|  	help
 | |
|  	  This is a driver to access hardware related data like
 |