diff options
Diffstat (limited to 'src/ata.c')
-rw-r--r-- | src/ata.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -405,8 +405,6 @@ ata_try_dma(struct disk_op_s *op, int iswrite, int blocksize) // Too many descriptors.. return -1; u32 count = bytes; - if (count > 0x10000) - count = 0x10000; u32 max = 0x10000 - (dest & 0xffff); if (count > max) count = max; |