diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-07-04 02:47:33 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-07-12 09:22:36 -0400 |
commit | 453cd0f3ff3bf25d86c96e62d271ba238f06d5ff (patch) | |
tree | 6d1d3508b9ed6295cedc443907c7c53cbf583e20 /drivers/scsi | |
parent | 2476b4d0426e1d6d4a42b2f7ae08f668b2cfe510 (diff) |
[SCSI] make struct scsi_{host,target}_type static
Make the needlessly global struct scsi_{host,target}_type static.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/hosts.c | 2 | ||||
-rw-r--r-- | drivers/scsi/scsi_scan.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/hosts.c b/drivers/scsi/hosts.c index 3690360d7a79..497ca68d1ffc 100644 --- a/drivers/scsi/hosts.c +++ b/drivers/scsi/hosts.c | |||
@@ -290,7 +290,7 @@ static void scsi_host_dev_release(struct device *dev) | |||
290 | kfree(shost); | 290 | kfree(shost); |
291 | } | 291 | } |
292 | 292 | ||
293 | struct device_type scsi_host_type = { | 293 | static struct device_type scsi_host_type = { |
294 | .name = "scsi_host", | 294 | .name = "scsi_host", |
295 | .release = scsi_host_dev_release, | 295 | .release = scsi_host_dev_release, |
296 | }; | 296 | }; |
diff --git a/drivers/scsi/scsi_scan.c b/drivers/scsi/scsi_scan.c index a00eee6f7be9..196fe3af0d5e 100644 --- a/drivers/scsi/scsi_scan.c +++ b/drivers/scsi/scsi_scan.c | |||
@@ -346,7 +346,7 @@ static void scsi_target_dev_release(struct device *dev) | |||
346 | put_device(parent); | 346 | put_device(parent); |
347 | } | 347 | } |
348 | 348 | ||
349 | struct device_type scsi_target_type = { | 349 | static struct device_type scsi_target_type = { |
350 | .name = "scsi_target", | 350 | .name = "scsi_target", |
351 | .release = scsi_target_dev_release, | 351 | .release = scsi_target_dev_release, |
352 | }; | 352 | }; |