mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 21:21:37 +00:00
[PATCH] Fix use of "void *" for block dev read/write buffer pointers
Signed-of-by: Greg Lopp <lopp@pobox.com> Acked-by: Grant Likely <grant.likely@secretlab.ca>
This commit is contained in:
parent
2ad3aba01d
commit
0b94504d22
1 changed files with 3 additions and 3 deletions
|
@ -1344,7 +1344,7 @@ ulong ide_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
|
||||||
|
|
||||||
++n;
|
++n;
|
||||||
++blknr;
|
++blknr;
|
||||||
buffer += ATA_SECTORWORDS;
|
buffer += ATA_BLOCKSIZE;
|
||||||
}
|
}
|
||||||
IDE_READ_E:
|
IDE_READ_E:
|
||||||
ide_led (DEVICE_LED(device), 0); /* LED off */
|
ide_led (DEVICE_LED(device), 0); /* LED off */
|
||||||
|
@ -1428,7 +1428,7 @@ ulong ide_write (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
|
||||||
c = ide_inb (device, ATA_STATUS); /* clear IRQ */
|
c = ide_inb (device, ATA_STATUS); /* clear IRQ */
|
||||||
++n;
|
++n;
|
||||||
++blknr;
|
++blknr;
|
||||||
buffer += ATA_SECTORWORDS;
|
buffer += ATA_BLOCKSIZE;
|
||||||
}
|
}
|
||||||
WR_OUT:
|
WR_OUT:
|
||||||
ide_led (DEVICE_LED(device), 0); /* LED off */
|
ide_led (DEVICE_LED(device), 0); /* LED off */
|
||||||
|
@ -2052,7 +2052,7 @@ ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
|
||||||
n+=cnt;
|
n+=cnt;
|
||||||
blkcnt-=cnt;
|
blkcnt-=cnt;
|
||||||
blknr+=cnt;
|
blknr+=cnt;
|
||||||
buffer+=cnt*(ATAPI_READ_BLOCK_SIZE/4); /* ulong blocksize in ulong */
|
buffer+=(cnt*ATAPI_READ_BLOCK_SIZE);
|
||||||
} while (blkcnt > 0);
|
} while (blkcnt > 0);
|
||||||
return (n);
|
return (n);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue