mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 05:54:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			905 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			905 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From e2092cf1b164ede62b740c7c95905171fb6232ff Mon Sep 17 00:00:00 2001
 | |
| From: Jonas Gorski <jogo@openwrt.org>
 | |
| Date: Sat, 23 Mar 2013 12:32:56 +0100
 | |
| Subject: [PATCH v2 1/3] MTD: bcm63xxpart: use size macro for CFE block size
 | |
| 
 | |
| Signed-off-by: Jonas Gorski <jogo@openwrt.org>
 | |
| ---
 | |
|  drivers/mtd/bcm63xxpart.c |    3 ++-
 | |
|  1 file changed, 2 insertions(+), 1 deletion(-)
 | |
| 
 | |
| --- a/drivers/mtd/bcm63xxpart.c
 | |
| +++ b/drivers/mtd/bcm63xxpart.c
 | |
| @@ -27,6 +27,7 @@
 | |
|  #include <linux/crc32.h>
 | |
|  #include <linux/module.h>
 | |
|  #include <linux/kernel.h>
 | |
| +#include <linux/sizes.h>
 | |
|  #include <linux/slab.h>
 | |
|  #include <linux/vmalloc.h>
 | |
|  #include <linux/mtd/mtd.h>
 | |
| @@ -37,7 +38,7 @@
 | |
|  
 | |
|  #define BCM63XX_EXTENDED_SIZE	0xBFC00000	/* Extended flash address */
 | |
|  
 | |
| -#define BCM63XX_CFE_BLOCK_SIZE	0x10000		/* always at least 64KiB */
 | |
| +#define BCM63XX_CFE_BLOCK_SIZE	SZ_64K		/* always at least 64KiB */
 | |
|  
 | |
|  #define BCM63XX_CFE_MAGIC_OFFSET 0x4e0
 | |
|  
 |