2002-06-17 12:25:56

by Jason Straight

[permalink] [raw]
Subject: constants.c fix for 2.5.22 compile error

line 997 in /drivers/scsi/constants.c tries to use i without declaring it.
add i to the int declaration in 910 seems to fix.
--

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Jason Straight
President
BlazeConnect Internet Services
Cheboygan Michigan
http://www.blazeconnect.net
Phone: 231-597-0376


2002-06-17 13:38:52

by Douglas Gilbert

[permalink] [raw]
Subject: Re: constants.c fix for 2.5.22 compile error

Jason Straight wrote:
> line 997 in /drivers/scsi/constants.c tries to use
> i without declaring it.
> add i to the int declaration in 910 seems to fix.

This occurs when CONFIG_SCSI_CONSTANTS is not set in
the .config file.

BTW Defining CONFIG_SCSI_CONSTANTS adds about 30KB to
the size of the kernel (not 12 KB as indicated during
configuration).

Doug Gilbert

--- linux/drivers/scsi/constants.c Mon Jun 17 08:44:48 2002
+++ linux/drivers/scsi/constants.c2522fix Mon Jun 17 09:20:48 2002
@@ -993,10 +993,14 @@
}

#if !(CONSTANTS & CONST_SENSE)
- printk("Raw sense data:");
- for (i = 0; i < s; ++i)
- printk("0x%02x ", sense_buffer[i]);
- printk("\n");
+ {
+ int i;
+
+ printk("Raw sense data:");
+ for (i = 0; i < s; ++i)
+ printk("0x%02x ", sense_buffer[i]);
+ printk("\n");
+ }
#endif
}