mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
Simplify the code by making struct ata_scsi_transportt public, instead of using separate variable ata_scsi_transport_template. Reviewed-by: Damien Le Moal <dlemoal@kernel.org> Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: Niklas Cassel <cassel@kernel.org>
14 lines
334 B
C
14 lines
334 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _LIBATA_TRANSPORT_H
|
|
#define _LIBATA_TRANSPORT_H
|
|
|
|
|
|
extern struct scsi_transport_template ata_scsi_transportt;
|
|
|
|
int ata_tlink_add(struct ata_link *link);
|
|
void ata_tlink_delete(struct ata_link *link);
|
|
|
|
__init int libata_transport_init(void);
|
|
void __exit libata_transport_exit(void);
|
|
#endif
|