ide: trivial sparse annotations
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
cd740ab0f6
commit
7fa897b91a
@ -173,7 +173,7 @@ EXPORT_SYMBOL_GPL(ide_build_sglist);
|
|||||||
int ide_build_dmatable (ide_drive_t *drive, struct request *rq)
|
int ide_build_dmatable (ide_drive_t *drive, struct request *rq)
|
||||||
{
|
{
|
||||||
ide_hwif_t *hwif = HWIF(drive);
|
ide_hwif_t *hwif = HWIF(drive);
|
||||||
unsigned int *table = hwif->dmatable_cpu;
|
__le32 *table = (__le32 *)hwif->dmatable_cpu;
|
||||||
unsigned int is_trm290 = (hwif->chipset == ide_trm290) ? 1 : 0;
|
unsigned int is_trm290 = (hwif->chipset == ide_trm290) ? 1 : 0;
|
||||||
unsigned int count = 0;
|
unsigned int count = 0;
|
||||||
int i;
|
int i;
|
||||||
|
@ -510,10 +510,8 @@ void ide_fixstring (u8 *s, const int bytecount, const int byteswap)
|
|||||||
|
|
||||||
if (byteswap) {
|
if (byteswap) {
|
||||||
/* convert from big-endian to host byte order */
|
/* convert from big-endian to host byte order */
|
||||||
for (p = end ; p != s;) {
|
for (p = end ; p != s;)
|
||||||
unsigned short *pp = (unsigned short *) (p -= 2);
|
be16_to_cpus((u16 *)(p -= 2));
|
||||||
*pp = ntohs(*pp);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
/* strip leading blanks */
|
/* strip leading blanks */
|
||||||
while (s != end && *s == ' ')
|
while (s != end && *s == ' ')
|
||||||
|
@ -105,7 +105,7 @@ static int proc_ide_read_identify
|
|||||||
len = sprintf(page, "\n");
|
len = sprintf(page, "\n");
|
||||||
|
|
||||||
if (drive) {
|
if (drive) {
|
||||||
unsigned short *val = (unsigned short *) page;
|
__le16 *val = (__le16 *)page;
|
||||||
|
|
||||||
err = taskfile_lib_get_identify(drive, page);
|
err = taskfile_lib_get_identify(drive, page);
|
||||||
if (!err) {
|
if (!err) {
|
||||||
@ -113,7 +113,7 @@ static int proc_ide_read_identify
|
|||||||
page = out;
|
page = out;
|
||||||
do {
|
do {
|
||||||
out += sprintf(out, "%04x%c",
|
out += sprintf(out, "%04x%c",
|
||||||
le16_to_cpu(*val), (++i & 7) ? ' ' : '\n');
|
le16_to_cpup(val), (++i & 7) ? ' ' : '\n');
|
||||||
val += 1;
|
val += 1;
|
||||||
} while (i < (SECTOR_WORDS * 2));
|
} while (i < (SECTOR_WORDS * 2));
|
||||||
len = out - page;
|
len = out - page;
|
||||||
|
Loading…
Reference in New Issue
Block a user