diff options
author | <jejb@titanic.il.steeleye.com> | 2005-04-17 17:32:42 -0400 |
---|---|---|
committer | James Bottomley <jejb@titanic> | 2005-04-18 14:51:37 -0400 |
commit | 7aaef27bafdfa10351726a1d383bdde33422072c (patch) | |
tree | 3c6247d74ea748285ad58d1a299dcacbdca5bd7c /drivers/scsi | |
parent | dea3101e0a5c897d2c9351a7444e139db9f40247 (diff) |
qla2xxx: fix compiler warning in qla_attr.c
CC [M] drivers/scsi/qla2xxx/qla_attr.o
drivers/scsi/qla2xxx/qla_attr.c: In function `qla2x00_sysfs_write_fw_dump':
drivers/scsi/qla2xxx/qla_attr.c:65: warning: implicit declaration of function `vfree'
drivers/scsi/qla2xxx/qla_attr.c:83: warning: implicit declaration of function `vmalloc'
drivers/scsi/qla2xxx/qla_attr.c:83: warning: cast to pointer from integer of different size
Also remove spurious inclusion of linux/version.h
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_attr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_attr.c b/drivers/scsi/qla2xxx/qla_attr.c index 56770fac4d14..2240a0cde583 100644 --- a/drivers/scsi/qla2xxx/qla_attr.c +++ b/drivers/scsi/qla2xxx/qla_attr.c | |||
@@ -18,7 +18,7 @@ | |||
18 | */ | 18 | */ |
19 | #include "qla_def.h" | 19 | #include "qla_def.h" |
20 | 20 | ||
21 | #include <linux/version.h> | 21 | #include <linux/vmalloc.h> |
22 | #include <scsi/scsi_transport_fc.h> | 22 | #include <scsi/scsi_transport_fc.h> |
23 | 23 | ||
24 | /* SYSFS attributes --------------------------------------------------------- */ | 24 | /* SYSFS attributes --------------------------------------------------------- */ |