Messages in this thread Patch in this message |  | | Date | Mon, 15 Nov 2004 03:22:31 +0100 | | From | Adrian Bunk <> | | Subject | [2.6 patch] SCSI osst.c: make some code static |
| |
The patch below makes some needlessly global code static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
--- linux-2.6.10-rc1-mm5-full/drivers/scsi/osst.c.old 2004-11-13 22:44:39.000000000 +0100 +++ linux-2.6.10-rc1-mm5-full/drivers/scsi/osst.c 2004-11-13 22:44:59.000000000 +0100 @@ -24,7 +24,7 @@ */ static const char * cvsid = "$Id: osst.c,v 1.70 2003/12/23 14:22:12 wriede Exp $"; -const char * osst_version = "0.99.1"; +static const char * osst_version = "0.99.1"; /* The "failure to reconnect" firmware bug */ #define OSST_FW_NEED_POLL_MIN 10601 /*(107A)*/ @@ -164,7 +164,7 @@ static int osst_probe(struct device *); static int osst_remove(struct device *); -struct scsi_driver osst_template = { +static struct scsi_driver osst_template = { .owner = THIS_MODULE, .gendrv = { .name = "osst", - 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/
|  |