iommufd/selftest: Set varaiable mock_iommu_device storage-class-specifier to static
authorTom Rix <trix@redhat.com>
Tue, 4 Apr 2023 00:23:17 +0000 (20:23 -0400)
committerJason Gunthorpe <jgg@nvidia.com>
Tue, 4 Apr 2023 14:02:39 +0000 (11:02 -0300)
smatch reports:

drivers/iommu/iommufd/selftest.c:295:21: warning: symbol
  'mock_iommu_device' was not declared. Should it be static?

This variable is only used in one file so it should be static.

Fixes: 65c619ae0680 ("iommufd/selftest: Make selftest create a more complete mock device")
Link: https://lore.kernel.org/r/20230404002317.1912530-1-trix@redhat.com
Signed-off-by: Tom Rix <trix@redhat.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
drivers/iommu/iommufd/selftest.c

index 4463060ec84b6a2b53271c198aafe29074a8c397..74c2076105d4864379c8c554ad24a950d91e3575 100644 (file)
@@ -292,7 +292,7 @@ static const struct iommu_ops mock_ops = {
                },
 };
 
-struct iommu_device mock_iommu_device = {
+static struct iommu_device mock_iommu_device = {
        .ops = &mock_ops,
 };