mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
ide: fix IDE_HFLAG_NO_ATAPI_DMA handling in config_drive_for_dma()
commit 33c1002ed9
incorrectly changed return
value from '0' to '-1', fix it (ns87415 was the only host driver affected
since it uses both IDE_HFLAG_TRUST_BIOS_FOR_DMA and IDE_HFLAG_NO_ATAPI_DMA).
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
01745112de
commit
bcbf6ee3eb
1 changed files with 1 additions and 1 deletions
|
@ -340,7 +340,7 @@ static int config_drive_for_dma (ide_drive_t *drive)
|
||||||
|
|
||||||
if (drive->media != ide_disk) {
|
if (drive->media != ide_disk) {
|
||||||
if (hwif->host_flags & IDE_HFLAG_NO_ATAPI_DMA)
|
if (hwif->host_flags & IDE_HFLAG_NO_ATAPI_DMA)
|
||||||
return -1;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Reference in a new issue