Commit 91a09ae3 authored by Jens Axboe's avatar Jens Axboe Committed by Linus Torvalds

[PATCH] disable high mem on pio, ide

ide-dma incorrectly only clears high memory support if the verbose dma
disabling is called, it should clear it for the non-verbose too.
parent dbee8272
......@@ -562,8 +562,8 @@ int ide_dmaproc (ide_dma_action_t func, ide_drive_t *drive)
switch (func) {
case ide_dma_off:
printk("%s: DMA disabled\n", drive->name);
set_high = 0;
case ide_dma_off_quietly:
set_high = 0;
outb(inb(dma_base+2) & ~(1<<(5+unit)), dma_base+2);
case ide_dma_on:
ide_toggle_bounce(drive, set_high);
......
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