mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-30 21:44:27 -04:00 
			
		
		
		
	Refresh patches. Update patch that no longer applied: oxnas/0072-mtd-backport-v4.7-0day-patches-from-Boris.patch Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> Tested-by: Rosen Penev <rosenp@gmail.com>
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From 3e63b26bdd4069c3df2cd7ce7217a21d06801b41 Mon Sep 17 00:00:00 2001
 | |
| From: Brian Norris <computersforpeace@gmail.com>
 | |
| Date: Fri, 30 Oct 2015 20:33:22 -0700
 | |
| Subject: [PATCH 03/11] mtd: {nand,spi-nor}: assign MTD of_node
 | |
| 
 | |
| We should pass along our flash DT node to the MTD layer, so it can set
 | |
| up ofpart for us.
 | |
| 
 | |
| Signed-off-by: Brian Norris <computersforpeace@gmail.com>
 | |
| Reviewed-by: Boris Brezillon <boris.brezillon@free-electrons.com>
 | |
| ---
 | |
|  drivers/mtd/nand/nand_base.c  | 3 +++
 | |
|  drivers/mtd/spi-nor/spi-nor.c | 1 +
 | |
|  2 files changed, 4 insertions(+)
 | |
| 
 | |
| --- a/drivers/mtd/nand/nand_base.c
 | |
| +++ b/drivers/mtd/nand/nand_base.c
 | |
| @@ -3992,6 +3992,9 @@ int nand_scan_ident(struct mtd_info *mtd
 | |
|  	int ret;
 | |
|  
 | |
|  	if (chip->flash_node) {
 | |
| +		/* MTD can automatically handle DT partitions, etc. */
 | |
| +		mtd_set_of_node(mtd, chip->flash_node);
 | |
| +
 | |
|  		ret = nand_dt_init(mtd, chip, chip->flash_node);
 | |
|  		if (ret)
 | |
|  			return ret;
 | |
| --- a/drivers/mtd/spi-nor/spi-nor.c
 | |
| +++ b/drivers/mtd/spi-nor/spi-nor.c
 | |
| @@ -1228,6 +1228,7 @@ int spi_nor_scan(struct spi_nor *nor, co
 | |
|  		mtd->flags |= MTD_NO_ERASE;
 | |
|  
 | |
|  	mtd->dev.parent = dev;
 | |
| +	mtd_set_of_node(mtd, np);
 | |
|  	nor->page_size = info->page_size;
 | |
|  	mtd->writebufsize = nor->page_size;
 | |
|  
 |