Commit c52159b5 authored by Tom Rix's avatar Tom Rix Committed by Jason Gunthorpe

iommufd/selftest: Set varaiable mock_iommu_device storage-class-specifier to static

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: 65c619ae ("iommufd/selftest: Make selftest create a more complete mock device")
Link: https://lore.kernel.org/r/20230404002317.1912530-1-trix@redhat.comSigned-off-by: default avatarTom Rix <trix@redhat.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@nvidia.com>
parent 9fdf7916
......@@ -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,
};
......
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