[PATCH] relax ide-cd dma restrictions

This has been sitting for a while, and is causing lots of grief for
people burning CDs. It relaxes the dma restriction for ide-cd,
requiring only the length to be 32-byte aligned, address should be fine
at normal double word alignment.

Signed-off-by: Jens Axboe <axboe@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Jens Axboe and committed by Linus Torvalds 384f1fcd 0e158502

+1 -1
+1 -1
drivers/ide/ide-cd.c
··· 1933 /* 1934 * check if dma is safe 1935 */ 1936 - if ((rq->data_len & mask) || (addr & mask)) 1937 info->dma = 0; 1938 } 1939
··· 1933 /* 1934 * check if dma is safe 1935 */ 1936 + if ((rq->data_len & 3) || (addr & mask)) 1937 info->dma = 0; 1938 } 1939