diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2011-05-23 15:29:13 -0700 |
---|---|---|
committer | James Bottomley <jbottomley@parallels.com> | 2011-05-24 13:09:41 -0400 |
commit | 6e2037b0fd4d4ad9be941a3520d21945bc031a20 (patch) | |
tree | d301940c3d799ca53355e0e1ee379332a31a9943 /drivers | |
parent | a061f57d662ac2b19a1ff1955349adce7a282a5d (diff) | |
download | linux-3.10-6e2037b0fd4d4ad9be941a3520d21945bc031a20.tar.gz linux-3.10-6e2037b0fd4d4ad9be941a3520d21945bc031a20.tar.bz2 linux-3.10-6e2037b0fd4d4ad9be941a3520d21945bc031a20.zip |
[SCSI] osst: fix warning
drivers/scsi/osst.c: In function '__os_scsi_tape_open':
drivers/scsi/osst.c:4705: warning: ISO C90 forbids mixed declarations and code
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: James Bottomley <jbottomley@parallels.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/osst.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/scsi/osst.c b/drivers/scsi/osst.c index 9b79e84f95b..de0b1a704fb 100644 --- a/drivers/scsi/osst.c +++ b/drivers/scsi/osst.c @@ -4698,11 +4698,12 @@ static int __os_scsi_tape_open(struct inode * inode, struct file * filp) break; if ((SRpnt->sense[2] & 0x0f) == UNIT_ATTENTION) { + int j; + STp->pos_unknown = 0; STp->partition = STp->new_partition = 0; if (STp->can_partitions) STp->nbr_partitions = 1; /* This guess will be updated later if necessary */ - int j; for (j = 0; j < ST_NBR_PARTITIONS; j++) { STps = &(STp->ps[j]); STps->rw = ST_IDLE; |