diff options
Diffstat (limited to 'drivers/ata/pata_atiixp.c')
-rw-r--r-- | drivers/ata/pata_atiixp.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/ata/pata_atiixp.c b/drivers/ata/pata_atiixp.c index 3f78a1e54a75..6c2269b6bd3c 100644 --- a/drivers/ata/pata_atiixp.c +++ b/drivers/ata/pata_atiixp.c | |||
@@ -22,7 +22,7 @@ | |||
22 | #include <linux/libata.h> | 22 | #include <linux/libata.h> |
23 | 23 | ||
24 | #define DRV_NAME "pata_atiixp" | 24 | #define DRV_NAME "pata_atiixp" |
25 | #define DRV_VERSION "0.4.2" | 25 | #define DRV_VERSION "0.4.3" |
26 | 26 | ||
27 | enum { | 27 | enum { |
28 | ATIIXP_IDE_PIO_TIMING = 0x40, | 28 | ATIIXP_IDE_PIO_TIMING = 0x40, |
@@ -41,11 +41,9 @@ static int atiixp_pre_reset(struct ata_port *ap) | |||
41 | { 0x48, 1, 0x08, 0x00 } | 41 | { 0x48, 1, 0x08, 0x00 } |
42 | }; | 42 | }; |
43 | 43 | ||
44 | if (!pci_test_config_bits(pdev, &atiixp_enable_bits[ap->port_no])) { | 44 | if (!pci_test_config_bits(pdev, &atiixp_enable_bits[ap->port_no])) |
45 | ata_port_disable(ap); | 45 | return -ENOENT; |
46 | printk(KERN_INFO "ata%u: port disabled. ignoring.\n", ap->id); | 46 | |
47 | return 0; | ||
48 | } | ||
49 | ap->cbl = ATA_CBL_PATA80; | 47 | ap->cbl = ATA_CBL_PATA80; |
50 | return ata_std_prereset(ap); | 48 | return ata_std_prereset(ap); |
51 | } | 49 | } |
@@ -244,7 +242,7 @@ static struct ata_port_operations atiixp_port_ops = { | |||
244 | 242 | ||
245 | .qc_prep = ata_qc_prep, | 243 | .qc_prep = ata_qc_prep, |
246 | .qc_issue = ata_qc_issue_prot, | 244 | .qc_issue = ata_qc_issue_prot, |
247 | .eng_timeout = ata_eng_timeout, | 245 | |
248 | .data_xfer = ata_pio_data_xfer, | 246 | .data_xfer = ata_pio_data_xfer, |
249 | 247 | ||
250 | .irq_handler = ata_interrupt, | 248 | .irq_handler = ata_interrupt, |