diff options
-rw-r--r-- | drivers/ata/libata.h | 2 | ||||
-rw-r--r-- | drivers/ata/pata_sis.c | 3 | ||||
-rw-r--r-- | drivers/ata/sata_sis.c | 3 | ||||
-rw-r--r-- | drivers/ata/sis.h | 5 |
4 files changed, 7 insertions, 6 deletions
diff --git a/drivers/ata/libata.h b/drivers/ata/libata.h index 29bd7f80fc40..c42671493e8c 100644 --- a/drivers/ata/libata.h +++ b/drivers/ata/libata.h | |||
@@ -159,7 +159,5 @@ extern void ata_qc_schedule_eh(struct ata_queued_cmd *qc); | |||
159 | /* libata-sff.c */ | 159 | /* libata-sff.c */ |
160 | extern u8 ata_irq_on(struct ata_port *ap); | 160 | extern u8 ata_irq_on(struct ata_port *ap); |
161 | 161 | ||
162 | /* pata_sis.c */ | ||
163 | extern struct ata_port_info sis_info133; | ||
164 | 162 | ||
165 | #endif /* __LIBATA_H__ */ | 163 | #endif /* __LIBATA_H__ */ |
diff --git a/drivers/ata/pata_sis.c b/drivers/ata/pata_sis.c index 560103d55b2e..0a17a95e0504 100644 --- a/drivers/ata/pata_sis.c +++ b/drivers/ata/pata_sis.c | |||
@@ -32,9 +32,8 @@ | |||
32 | #include <scsi/scsi_host.h> | 32 | #include <scsi/scsi_host.h> |
33 | #include <linux/libata.h> | 33 | #include <linux/libata.h> |
34 | #include <linux/ata.h> | 34 | #include <linux/ata.h> |
35 | #include "libata.h" | 35 | #include "sis.h" |
36 | 36 | ||
37 | #undef DRV_NAME /* already defined in libata.h, for libata-core */ | ||
38 | #define DRV_NAME "pata_sis" | 37 | #define DRV_NAME "pata_sis" |
39 | #define DRV_VERSION "0.4.5" | 38 | #define DRV_VERSION "0.4.5" |
40 | 39 | ||
diff --git a/drivers/ata/sata_sis.c b/drivers/ata/sata_sis.c index 49c9e2bd706f..fd694b6a6f8a 100644 --- a/drivers/ata/sata_sis.c +++ b/drivers/ata/sata_sis.c | |||
@@ -40,9 +40,8 @@ | |||
40 | #include <linux/device.h> | 40 | #include <linux/device.h> |
41 | #include <scsi/scsi_host.h> | 41 | #include <scsi/scsi_host.h> |
42 | #include <linux/libata.h> | 42 | #include <linux/libata.h> |
43 | #include "libata.h" | 43 | #include "sis.h" |
44 | 44 | ||
45 | #undef DRV_NAME /* already defined in libata.h, for libata-core */ | ||
46 | #define DRV_NAME "sata_sis" | 45 | #define DRV_NAME "sata_sis" |
47 | #define DRV_VERSION "0.7" | 46 | #define DRV_VERSION "0.7" |
48 | 47 | ||
diff --git a/drivers/ata/sis.h b/drivers/ata/sis.h new file mode 100644 index 000000000000..231da8fc2200 --- /dev/null +++ b/drivers/ata/sis.h | |||
@@ -0,0 +1,5 @@ | |||
1 | |||
2 | struct ata_port_info; | ||
3 | |||
4 | /* pata_sis.c */ | ||
5 | extern struct ata_port_info sis_info133; | ||