drm/etnaviv: make local symbols static
authorWei Yongjun <weiyongjun1@huawei.com>
Thu, 11 Jan 2018 11:34:59 +0000 (11:34 +0000)
committerLucas Stach <l.stach@pengutronix.de>
Mon, 12 Feb 2018 15:30:56 +0000 (16:30 +0100)
Fixes the following sparse warnings:

drivers/gpu/drm/etnaviv/etnaviv_iommu.c:161:39: warning:
 symbol 'etnaviv_iommuv1_ops' was not declared. Should it be static?
drivers/gpu/drm/etnaviv/etnaviv_iommu_v2.c:239:39: warning:
 symbol 'etnaviv_iommuv2_ops' was not declared. Should it be static?

Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
drivers/gpu/drm/etnaviv/etnaviv_iommu.c
drivers/gpu/drm/etnaviv/etnaviv_iommu_v2.c

index 7a8c947..4b9b11c 100644 (file)
@@ -158,7 +158,7 @@ void etnaviv_iommuv1_restore(struct etnaviv_gpu *gpu)
        gpu_write(gpu, VIVS_MC_MMU_RA_PAGE_TABLE, pgtable);
 }
 
-const struct etnaviv_iommu_domain_ops etnaviv_iommuv1_ops = {
+static const struct etnaviv_iommu_domain_ops etnaviv_iommuv1_ops = {
        .free = etnaviv_iommuv1_domain_free,
        .map = etnaviv_iommuv1_map,
        .unmap = etnaviv_iommuv1_unmap,
index 1e956e2..6e7c892 100644 (file)
@@ -236,7 +236,7 @@ void etnaviv_iommuv2_restore(struct etnaviv_gpu *gpu)
        gpu_write(gpu, VIVS_MMUv2_CONTROL, VIVS_MMUv2_CONTROL_ENABLE);
 }
 
-const struct etnaviv_iommu_domain_ops etnaviv_iommuv2_ops = {
+static const struct etnaviv_iommu_domain_ops etnaviv_iommuv2_ops = {
        .free = etnaviv_iommuv2_domain_free,
        .map = etnaviv_iommuv2_map,
        .unmap = etnaviv_iommuv2_unmap,