Commit 9f24e82d authored by Bryan Wu's avatar Bryan Wu Committed by Jeff Garzik

Blackfin pata-bf54x driver: fix compiling bug - no ata_port struct in struct ata_device any more

Cc: Sonic Zhang <sonic.zhang@analog.com>
Signed-off-by: default avatarBryan Wu <bryan.wu@analog.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 30d849c9
...@@ -299,7 +299,7 @@ static void bfin_set_piomode(struct ata_port *ap, struct ata_device *adev) ...@@ -299,7 +299,7 @@ static void bfin_set_piomode(struct ata_port *ap, struct ata_device *adev)
*/ */
n6 = num_clocks_min(t6min, fsclk); n6 = num_clocks_min(t6min, fsclk);
if (mode >= 0 && mode <= 4 && n6 >= 1) { if (mode >= 0 && mode <= 4 && n6 >= 1) {
dev_dbg(adev->ap->dev, "set piomode: mode=%d, fsclk=%ud\n", mode, fsclk); dev_dbg(adev->link->ap->dev, "set piomode: mode=%d, fsclk=%ud\n", mode, fsclk);
/* calculate the timing values for register transfers. */ /* calculate the timing values for register transfers. */
while (mode > 0 && pio_fsclk[mode] > fsclk) while (mode > 0 && pio_fsclk[mode] > fsclk)
mode--; mode--;
...@@ -376,7 +376,7 @@ static void bfin_set_dmamode(struct ata_port *ap, struct ata_device *adev) ...@@ -376,7 +376,7 @@ static void bfin_set_dmamode(struct ata_port *ap, struct ata_device *adev)
mode = adev->dma_mode - XFER_UDMA_0; mode = adev->dma_mode - XFER_UDMA_0;
if (mode >= 0 && mode <= 5) { if (mode >= 0 && mode <= 5) {
dev_dbg(adev->ap->dev, "set udmamode: mode=%d\n", mode); dev_dbg(adev->link->ap->dev, "set udmamode: mode=%d\n", mode);
/* the most restrictive timing value is t6 and tc, /* the most restrictive timing value is t6 and tc,
* the DIOW - data hold. If one SCLK pulse is longer * the DIOW - data hold. If one SCLK pulse is longer
* than this minimum value then register * than this minimum value then register
...@@ -433,7 +433,7 @@ static void bfin_set_dmamode(struct ata_port *ap, struct ata_device *adev) ...@@ -433,7 +433,7 @@ static void bfin_set_dmamode(struct ata_port *ap, struct ata_device *adev)
mode = adev->dma_mode - XFER_MW_DMA_0; mode = adev->dma_mode - XFER_MW_DMA_0;
if (mode >= 0 && mode <= 2) { if (mode >= 0 && mode <= 2) {
dev_dbg(adev->ap->dev, "set mdmamode: mode=%d\n", mode); dev_dbg(adev->link->ap->dev, "set mdmamode: mode=%d\n", mode);
/* the most restrictive timing value is tf, the DMACK to /* the most restrictive timing value is tf, the DMACK to
* read data released. If one SCLK pulse is longer than * read data released. If one SCLK pulse is longer than
* this maximum value then the MDMA mode * this maximum value then the MDMA mode
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment