Re: constants.c fix for 2.5.22 compile error

Douglas Gilbert (dougg@torque.net)
Mon, 17 Jun 2002 09:29:16 -0400


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
}

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/