diff options
| -rw-r--r-- | drivers/ide/arm/icside.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/ide/arm/icside.c b/drivers/ide/arm/icside.c index 410a0d13e35e..93f71fcfc04d 100644 --- a/drivers/ide/arm/icside.c +++ b/drivers/ide/arm/icside.c | |||
| @@ -316,13 +316,13 @@ static int icside_dma_end(ide_drive_t *drive) | |||
| 316 | 316 | ||
| 317 | drive->waiting_for_dma = 0; | 317 | drive->waiting_for_dma = 0; |
| 318 | 318 | ||
| 319 | disable_dma(state->dev->dma); | 319 | disable_dma(ECARD_DEV(state->dev)->dma); |
| 320 | 320 | ||
| 321 | /* Teardown mappings after DMA has completed. */ | 321 | /* Teardown mappings after DMA has completed. */ |
| 322 | dma_unmap_sg(state->dev, hwif->sg_table, hwif->sg_nents, | 322 | dma_unmap_sg(state->dev, hwif->sg_table, hwif->sg_nents, |
| 323 | hwif->sg_dma_direction); | 323 | hwif->sg_dma_direction); |
| 324 | 324 | ||
| 325 | return get_dma_residue(state->dev->dma) != 0; | 325 | return get_dma_residue(ECARD_DEV(state->dev)->dma) != 0; |
| 326 | } | 326 | } |
| 327 | 327 | ||
| 328 | static void icside_dma_start(ide_drive_t *drive) | 328 | static void icside_dma_start(ide_drive_t *drive) |
| @@ -331,8 +331,8 @@ static void icside_dma_start(ide_drive_t *drive) | |||
| 331 | struct icside_state *state = hwif->hwif_data; | 331 | struct icside_state *state = hwif->hwif_data; |
| 332 | 332 | ||
| 333 | /* We can not enable DMA on both channels simultaneously. */ | 333 | /* We can not enable DMA on both channels simultaneously. */ |
| 334 | BUG_ON(dma_channel_active(state->dev->dma)); | 334 | BUG_ON(dma_channel_active(ECARD_DEV(state->dev)->dma)); |
| 335 | enable_dma(state->dev->dma); | 335 | enable_dma(ECARD_DEV(state->dev)->dma); |
| 336 | } | 336 | } |
| 337 | 337 | ||
| 338 | static int icside_dma_setup(ide_drive_t *drive) | 338 | static int icside_dma_setup(ide_drive_t *drive) |
| @@ -350,7 +350,7 @@ static int icside_dma_setup(ide_drive_t *drive) | |||
| 350 | /* | 350 | /* |
| 351 | * We can not enable DMA on both channels. | 351 | * We can not enable DMA on both channels. |
| 352 | */ | 352 | */ |
| 353 | BUG_ON(dma_channel_active(state->dev->dma)); | 353 | BUG_ON(dma_channel_active(ECARD_DEV(state->dev)->dma)); |
| 354 | 354 | ||
| 355 | icside_build_sglist(drive, rq); | 355 | icside_build_sglist(drive, rq); |
| 356 | 356 | ||
| @@ -367,14 +367,14 @@ static int icside_dma_setup(ide_drive_t *drive) | |||
| 367 | /* | 367 | /* |
| 368 | * Select the correct timing for this drive. | 368 | * Select the correct timing for this drive. |
| 369 | */ | 369 | */ |
| 370 | set_dma_speed(state->dev->dma, drive->drive_data); | 370 | set_dma_speed(ECARD_DEV(state->dev)->dma, drive->drive_data); |
| 371 | 371 | ||
| 372 | /* | 372 | /* |
| 373 | * Tell the DMA engine about the SG table and | 373 | * Tell the DMA engine about the SG table and |
| 374 | * data direction. | 374 | * data direction. |
| 375 | */ | 375 | */ |
| 376 | set_dma_sg(state->dev->dma, hwif->sg_table, hwif->sg_nents); | 376 | set_dma_sg(ECARD_DEV(state->dev)->dma, hwif->sg_table, hwif->sg_nents); |
| 377 | set_dma_mode(state->dev->dma, dma_mode); | 377 | set_dma_mode(ECARD_DEV(state->dev)->dma, dma_mode); |
| 378 | 378 | ||
| 379 | drive->waiting_for_dma = 1; | 379 | drive->waiting_for_dma = 1; |
| 380 | 380 | ||
