From: FUJITA Tomonori Date: Mon, 28 Jul 2008 02:59:20 +0000 (+0900) Subject: [SCSI] qla2xxx: fix msleep compile error X-Git-Tag: v2.6.27-rc1~4^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=00eabe7c4478f38b42d632763c4878ced5a1f25c;p=profile%2Fivi%2Fkernel-x86-ivi.git [SCSI] qla2xxx: fix msleep compile error drivers/scsi/qla2xxx/qla_attr.c: In function 'qla24xx_vport_delete': drivers/scsi/qla2xxx/qla_attr.c:1184: error: implicit declaration of function 'msleep' make[3]: *** [drivers/scsi/qla2xxx/qla_attr.o] Error 1 make[3]: *** Waiting for unfinished jobs.... Reported-by: David Miller Signed-off-by: FUJITA Tomonori Acked-by: Andrew Vasquez Signed-off-by: James Bottomley --- diff --git a/drivers/scsi/qla2xxx/qla_attr.c b/drivers/scsi/qla2xxx/qla_attr.c index 7a4409a..a319a20 100644 --- a/drivers/scsi/qla2xxx/qla_attr.c +++ b/drivers/scsi/qla2xxx/qla_attr.c @@ -8,6 +8,7 @@ #include #include +#include static int qla24xx_vport_disable(struct fc_vport *, bool);