diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-07-03 23:47:33 -0700 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-07-12 08:22:36 -0500 |
commit | 453cd0f3ff3bf25d86c96e62d271ba238f06d5ff (patch) | |
tree | 6d1d3508b9ed6295cedc443907c7c53cbf583e20 /drivers/scsi/scsi_scan.c | |
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/scsi_scan.c')
-rw-r--r-- | drivers/scsi/scsi_scan.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) put_device(parent); } -struct device_type scsi_target_type = { +static struct device_type scsi_target_type = { .name = "scsi_target", .release = scsi_target_dev_release, }; |