17 lines
		
	
	
		
			467 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			467 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
#ifndef _LIBATA_TRANSPORT_H
 | 
						|
#define _LIBATA_TRANSPORT_H
 | 
						|
 | 
						|
 | 
						|
extern struct scsi_transport_template *ata_scsi_transport_template;
 | 
						|
 | 
						|
int ata_tlink_add(struct ata_link *link);
 | 
						|
void ata_tlink_delete(struct ata_link *link);
 | 
						|
 | 
						|
struct scsi_transport_template *ata_attach_transport(void);
 | 
						|
void ata_release_transport(struct scsi_transport_template *t);
 | 
						|
 | 
						|
__init int libata_transport_init(void);
 | 
						|
void __exit libata_transport_exit(void);
 | 
						|
#endif
 |