diff options
-rw-r--r-- | drivers/iommu/s390-iommu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/iommu/s390-iommu.c b/drivers/iommu/s390-iommu.c index 471ee36b9c6e..a04d491cf431 100644 --- a/drivers/iommu/s390-iommu.c +++ b/drivers/iommu/s390-iommu.c | |||
@@ -49,7 +49,7 @@ static bool s390_iommu_capable(enum iommu_cap cap) | |||
49 | } | 49 | } |
50 | } | 50 | } |
51 | 51 | ||
52 | struct iommu_domain *s390_domain_alloc(unsigned domain_type) | 52 | static struct iommu_domain *s390_domain_alloc(unsigned domain_type) |
53 | { | 53 | { |
54 | struct s390_domain *s390_domain; | 54 | struct s390_domain *s390_domain; |
55 | 55 | ||
@@ -73,7 +73,7 @@ struct iommu_domain *s390_domain_alloc(unsigned domain_type) | |||
73 | return &s390_domain->domain; | 73 | return &s390_domain->domain; |
74 | } | 74 | } |
75 | 75 | ||
76 | void s390_domain_free(struct iommu_domain *domain) | 76 | static void s390_domain_free(struct iommu_domain *domain) |
77 | { | 77 | { |
78 | struct s390_domain *s390_domain = to_s390_domain(domain); | 78 | struct s390_domain *s390_domain = to_s390_domain(domain); |
79 | 79 | ||