From: John Daiker <[EMAIL PROTECTED]> This patch applies cleanly to 2.6.19-git7
Fixes the following warning: CC drivers/scsi/scsi.o drivers/scsi/scsi.c: In function ‘scsi_device_put’: drivers/scsi/scsi.c:874: warning: unused variable ‘module’ Signed-off-by: John Daiker <[EMAIL PROTECTED]> --- drivers/scsi/scsi.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c index c59f315..780d6dc 100644 --- a/drivers/scsi/scsi.c +++ b/drivers/scsi/scsi.c @@ -871,9 +871,9 @@ EXPORT_SYMBOL(scsi_device_get); */ void scsi_device_put(struct scsi_device *sdev) { +#ifdef CONFIG_MODULE_UNLOAD struct module *module = sdev->host->hostt->module; -#ifdef CONFIG_MODULE_UNLOAD /* The module refcount will be zero if scsi_device_get() * was called from a module removal routine */ if (module && module_refcount(module) != 0) - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/