mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	Use 'struct' instead of a typdef. Also since 'struct block_dev_desc' is long and causes 80-column violations, rename it to struct blk_desc. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Stephen Warren <swarren@nvidia.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			330 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			330 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef __SYSTEMACE_H
 | 
						|
#define __SYSTEMACE_H
 | 
						|
/*
 | 
						|
 * Copyright (c) 2004 Picture Elements, Inc.
 | 
						|
 *    Stephen Williams (steve@picturel.com)
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier:	GPL-2.0+
 | 
						|
 */
 | 
						|
 | 
						|
#ifdef CONFIG_SYSTEMACE
 | 
						|
 | 
						|
# include  <part.h>
 | 
						|
 | 
						|
struct blk_desc *systemace_get_dev(int dev);
 | 
						|
 | 
						|
#endif	/* CONFIG_SYSTEMACE */
 | 
						|
#endif	/* __SYSTEMACE_H */
 |