diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-02-09 11:39:45 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-09 12:14:07 -0500 |
commit | 95389b86fd07660970a3e6498405d53037c035e9 (patch) | |
tree | 6814032c730675fae1958491210840aef5fa15e9 /drivers/scsi/osst.c | |
parent | b4377356450e2358f5f92d34f130d6cb6574bf76 (diff) |
[PATCH] osst endianness annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/scsi/osst.c')
-rw-r--r-- | drivers/scsi/osst.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/scsi/osst.c b/drivers/scsi/osst.c index 7d2311067903..bd6bbf61adb8 100644 --- a/drivers/scsi/osst.c +++ b/drivers/scsi/osst.c | |||
@@ -521,10 +521,10 @@ static void osst_init_aux(struct osst_tape * STp, int frame_type, int frame_seq_ | |||
521 | break; | 521 | break; |
522 | default: ; /* probably FILL */ | 522 | default: ; /* probably FILL */ |
523 | } | 523 | } |
524 | aux->filemark_cnt = ntohl(STp->filemark_cnt); | 524 | aux->filemark_cnt = htonl(STp->filemark_cnt); |
525 | aux->phys_fm = ntohl(0xffffffff); | 525 | aux->phys_fm = htonl(0xffffffff); |
526 | aux->last_mark_ppos = ntohl(STp->last_mark_ppos); | 526 | aux->last_mark_ppos = htonl(STp->last_mark_ppos); |
527 | aux->last_mark_lbn = ntohl(STp->last_mark_lbn); | 527 | aux->last_mark_lbn = htonl(STp->last_mark_lbn); |
528 | } | 528 | } |
529 | 529 | ||
530 | /* | 530 | /* |