aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/pci/scc_pata.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ide/pci/scc_pata.c')
-rw-r--r--drivers/ide/pci/scc_pata.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/ide/pci/scc_pata.c b/drivers/ide/pci/scc_pata.c
index 3d72a5e03f3d..a89dc4780786 100644
--- a/drivers/ide/pci/scc_pata.c
+++ b/drivers/ide/pci/scc_pata.c
@@ -139,6 +139,11 @@ static u8 scc_read_status(ide_hwif_t *hwif)
139 return (u8)in_be32((void *)hwif->io_ports.status_addr); 139 return (u8)in_be32((void *)hwif->io_ports.status_addr);
140} 140}
141 141
142static u8 scc_read_altstatus(ide_hwif_t *hwif)
143{
144 return (u8)in_be32((void *)hwif->io_ports.ctl_addr);
145}
146
142static u8 scc_read_sff_dma_status(ide_hwif_t *hwif) 147static u8 scc_read_sff_dma_status(ide_hwif_t *hwif)
143{ 148{
144 return (u8)in_be32((void *)(hwif->dma_base + 4)); 149 return (u8)in_be32((void *)(hwif->dma_base + 4));
@@ -794,6 +799,7 @@ static void __devinit init_mmio_iops_scc(ide_hwif_t *hwif)
794 799
795 hwif->exec_command = scc_exec_command; 800 hwif->exec_command = scc_exec_command;
796 hwif->read_status = scc_read_status; 801 hwif->read_status = scc_read_status;
802 hwif->read_altstatus = scc_read_altstatus;
797 hwif->read_sff_dma_status = scc_read_sff_dma_status; 803 hwif->read_sff_dma_status = scc_read_sff_dma_status;
798 804
799 hwif->tf_load = scc_tf_load; 805 hwif->tf_load = scc_tf_load;