diff options
Diffstat (limited to 'drivers/ata/libata.h')
-rw-r--r-- | drivers/ata/libata.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/ata/libata.h b/drivers/ata/libata.h index 132da80aa23a..d89502f3123a 100644 --- a/drivers/ata/libata.h +++ b/drivers/ata/libata.h | |||
@@ -203,6 +203,16 @@ static inline int sata_pmp_attach(struct ata_device *dev) | |||
203 | /* libata-sff.c */ | 203 | /* libata-sff.c */ |
204 | #ifdef CONFIG_ATA_SFF | 204 | #ifdef CONFIG_ATA_SFF |
205 | extern void ata_pio_task(struct work_struct *work); | 205 | extern void ata_pio_task(struct work_struct *work); |
206 | extern void ata_sff_port_init(struct ata_port *ap); | ||
207 | extern int ata_sff_init(void); | ||
208 | extern void ata_sff_exit(void); | ||
209 | #else /* CONFIG_ATA_SFF */ | ||
210 | static inline void ata_sff_port_init(struct ata_port *ap) | ||
211 | { } | ||
212 | static inline int ata_sff_init(void) | ||
213 | { return 0; } | ||
214 | static inline void ata_sff_exit(void) | ||
215 | { } | ||
206 | #endif /* CONFIG_ATA_SFF */ | 216 | #endif /* CONFIG_ATA_SFF */ |
207 | 217 | ||
208 | #endif /* __LIBATA_H__ */ | 218 | #endif /* __LIBATA_H__ */ |