mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 05:31:15 +00:00
Fix build error in drivers/block/cciss.c
.. caused by a missing semi-colon, introduced in commit 0fc13c8995
("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>
This commit is contained in:
parent
8cad7f06e3
commit
453434cf3f
1 changed files with 1 additions and 1 deletions
|
@ -2835,7 +2835,7 @@ static int cciss_revalidate(struct gendisk *disk)
|
||||||
|
|
||||||
for (logvol = 0; logvol < CISS_MAX_LUN; logvol++) {
|
for (logvol = 0; logvol < CISS_MAX_LUN; logvol++) {
|
||||||
if (!h->drv[logvol])
|
if (!h->drv[logvol])
|
||||||
continue
|
continue;
|
||||||
if (memcmp(h->drv[logvol]->LunID, drv->LunID,
|
if (memcmp(h->drv[logvol]->LunID, drv->LunID,
|
||||||
sizeof(drv->LunID)) == 0) {
|
sizeof(drv->LunID)) == 0) {
|
||||||
FOUND = 1;
|
FOUND = 1;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue