Skip to content

Commit

Permalink
Fix build error in drivers/block/cciss.c
Browse files Browse the repository at this point in the history
.. caused by a missing semi-colon, introduced in commit 0fc13c8
("cciss: fix cciss_revalidate panic").

Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Reported-by: Thiago Farina <tfransosi@gmail.com>
Cc: Jens Axboe <jaxboe@fusionio.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Linus Torvalds committed Dec 21, 2010
1 parent 8cad7f0 commit 453434c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/block/cciss.c
Original file line number Diff line number Diff line change
Expand Up @@ -2835,7 +2835,7 @@ static int cciss_revalidate(struct gendisk *disk)

for (logvol = 0; logvol < CISS_MAX_LUN; logvol++) {
if (!h->drv[logvol])
continue
continue;
if (memcmp(h->drv[logvol]->LunID, drv->LunID,
sizeof(drv->LunID)) == 0) {
FOUND = 1;
Expand Down

0 comments on commit 453434c

Please sign in to comment.