mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 10:26:10 +01:00 
			
		
		
		
	- block_dev_desc_t says that block_(read|write) take lbaint_t for blkcnt not ulong. - We also move the extern of sata_dev_desc into <sata.h> - Remove now duplicate declarations from driver-specific headers. Signed-off-by: Tom Rini <trini@ti.com> Signed-off-by: Pavel Herrmann <morpheus.ibis@gmail.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			359 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			359 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef __SATA_H__
 | |
| #define __SATA_H__
 | |
| #include <part.h>
 | |
| 
 | |
| int init_sata(int dev);
 | |
| int scan_sata(int dev);
 | |
| ulong sata_read(int dev, ulong blknr, lbaint_t blkcnt, void *buffer);
 | |
| ulong sata_write(int dev, ulong blknr, lbaint_t blkcnt, const void *buffer);
 | |
| 
 | |
| int sata_initialize(void);
 | |
| int __sata_initialize(void);
 | |
| 
 | |
| extern block_dev_desc_t sata_dev_desc[];
 | |
| 
 | |
| #endif
 |