mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Linux Kernel abolished include/linux/config.h long time ago. (around version v2.6.18..v2.6.19) We don't need to provide Linux copatibility any more. This commit deletes include/linux/config.h and fixes source files not to include this. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
		
			
				
	
	
		
			24 lines
		
	
	
		
			480 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			480 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * (C) Copyright 2008,
 | 
						|
 * Daniel Hellstrom, Gaisler Research, daniel@gaisler.com.
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier:	GPL-2.0+
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __SPARC_CACHE_H__
 | 
						|
#define __SPARC_CACHE_H__
 | 
						|
 | 
						|
#include <asm/processor.h>
 | 
						|
 | 
						|
/*
 | 
						|
 * If CONFIG_SYS_CACHELINE_SIZE is defined use it for DMA alignment.  Otherwise
 | 
						|
 * use 32-bytes, the cacheline size for Sparc.
 | 
						|
 */
 | 
						|
#ifdef CONFIG_SYS_CACHELINE_SIZE
 | 
						|
#define ARCH_DMA_MINALIGN	CONFIG_SYS_CACHELINE_SIZE
 | 
						|
#else
 | 
						|
#define ARCH_DMA_MINALIGN	32
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 |