|
@@ -68,7 +68,6 @@ static ssize_t ahci_transmit_led_message(struct ata_port *ap, u32 state,
|
|
|
|
|
|
static int ahci_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val);
|
|
|
static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val);
|
|
|
-static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc);
|
|
|
static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc);
|
|
|
static int ahci_port_start(struct ata_port *ap);
|
|
|
static void ahci_port_stop(struct ata_port *ap);
|
|
@@ -620,7 +619,7 @@ int ahci_stop_engine(struct ata_port *ap)
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(ahci_stop_engine);
|
|
|
|
|
|
-static void ahci_start_fis_rx(struct ata_port *ap)
|
|
|
+void ahci_start_fis_rx(struct ata_port *ap)
|
|
|
{
|
|
|
void __iomem *port_mmio = ahci_port_base(ap);
|
|
|
struct ahci_host_priv *hpriv = ap->host->private_data;
|
|
@@ -646,6 +645,7 @@ static void ahci_start_fis_rx(struct ata_port *ap)
|
|
|
/* flush */
|
|
|
readl(port_mmio + PORT_CMD);
|
|
|
}
|
|
|
+EXPORT_SYMBOL_GPL(ahci_start_fis_rx);
|
|
|
|
|
|
static int ahci_stop_fis_rx(struct ata_port *ap)
|
|
|
{
|
|
@@ -1945,7 +1945,7 @@ irqreturn_t ahci_interrupt(int irq, void *dev_instance)
|
|
|
}
|
|
|
EXPORT_SYMBOL_GPL(ahci_interrupt);
|
|
|
|
|
|
-static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
|
|
|
+unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
|
|
|
{
|
|
|
struct ata_port *ap = qc->ap;
|
|
|
void __iomem *port_mmio = ahci_port_base(ap);
|
|
@@ -1974,6 +1974,7 @@ static unsigned int ahci_qc_issue(struct ata_queued_cmd *qc)
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
|
+EXPORT_SYMBOL_GPL(ahci_qc_issue);
|
|
|
|
|
|
static bool ahci_qc_fill_rtf(struct ata_queued_cmd *qc)
|
|
|
{
|