mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-29 19:18:22 +00:00 
			
		
		
		
	In order to make it easier to move on to dropping common.h from code directly, remove common.h inclusion from the rest of the header file which had been including it. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			326 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			326 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* Glue between u-boot and upstream zlib */
 | |
| #ifndef __GLUE_ZLIB_H__
 | |
| #define __GLUE_ZLIB_H__
 | |
| 
 | |
| #include <linux/compiler.h>
 | |
| #include <asm/unaligned.h>
 | |
| #include <watchdog.h>
 | |
| #include "u-boot/zlib.h"
 | |
| 
 | |
| /* avoid conflicts */
 | |
| #undef OFF
 | |
| #undef ASMINF
 | |
| #undef POSTINC
 | |
| #undef NO_GZIP
 | |
| #define GUNZIP
 | |
| #undef STDC
 | |
| #undef NO_ERRNO_H
 | |
| 
 | |
| #endif
 |