projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0174511
)
ide: fix IDE_HFLAG_NO_ATAPI_DMA handling in config_drive_for_dma()
author
Bartlomiej Zolnierkiewicz
<bzolnier@gmail.com>
Mon, 5 Nov 2007 20:42:30 +0000
(21:42 +0100)
committer
Bartlomiej Zolnierkiewicz
<bzolnier@gmail.com>
Mon, 5 Nov 2007 20:42:30 +0000
(21:42 +0100)
commit
33c1002ed912ac9dacedd5d5b166da3b72d18460
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>
drivers/ide/ide-dma.c
patch
|
blob
|
history
diff --git
a/drivers/ide/ide-dma.c
b/drivers/ide/ide-dma.c
index 202d56a8ead20feb8ffb7a57aadf36f43ca75c6a..e3add70b9cd8b29f45156e4ad9b6d4ad2b4d8adc 100644
(file)
--- a/
drivers/ide/ide-dma.c
+++ b/
drivers/ide/ide-dma.c
@@
-340,7
+340,7
@@
static int config_drive_for_dma (ide_drive_t *drive)
if (drive->media != ide_disk) {
if (hwif->host_flags & IDE_HFLAG_NO_ATAPI_DMA)
- return
-1
;
+ return
0
;
}
/*