Commit d0aa9c61 authored by Adrian Bunk's avatar Adrian Bunk Committed by James Bottomley

[PATCH] SCSI NCR_Q720.c: make some code static

This patch makes two needlessly global structs static.
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent 45b95e26
...@@ -48,7 +48,7 @@ struct NCR_Q720_private { ...@@ -48,7 +48,7 @@ struct NCR_Q720_private {
struct Scsi_Host *hosts[4]; struct Scsi_Host *hosts[4];
}; };
struct scsi_host_template NCR_Q720_tpnt = { static struct scsi_host_template NCR_Q720_tpnt = {
.module = THIS_MODULE, .module = THIS_MODULE,
.proc_name = "NCR_Q720", .proc_name = "NCR_Q720",
}; };
...@@ -345,7 +345,7 @@ NCR_Q720_remove(struct device *dev) ...@@ -345,7 +345,7 @@ NCR_Q720_remove(struct device *dev)
static short NCR_Q720_id_table[] = { NCR_Q720_MCA_ID, 0 }; static short NCR_Q720_id_table[] = { NCR_Q720_MCA_ID, 0 };
struct mca_driver NCR_Q720_driver = { static struct mca_driver NCR_Q720_driver = {
.id_table = NCR_Q720_id_table, .id_table = NCR_Q720_id_table,
.driver = { .driver = {
.name = "NCR_Q720", .name = "NCR_Q720",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment