ide-cd: revert DMA mask test change

The change to require the DMA length to be only word-aligned was not
safe.
diff --git a/drivers/ide/ide-cd.c b/drivers/ide/ide-cd.c
index f0bd242..78e3e7b 100644
--- a/drivers/ide/ide-cd.c
+++ b/drivers/ide/ide-cd.c
@@ -1932,8 +1932,11 @@
 
 		/*
 		 * check if dma is safe
+		 *
+		 * NOTE! The "len" and "addr" checks should possibly have
+		 * separate masks.
 		 */
-		if ((rq->data_len & 3) || (addr & mask))
+		if ((rq->data_len & mask) || (addr & mask))
 			info->dma = 0;
 	}