]> Git Repo - linux.git/commitdiff
iommu/qcom: Drop of_match_ptr to fix -Wunused-const-variable
authorKrzysztof Kozlowski <[email protected]>
Tue, 28 Jul 2020 17:08:59 +0000 (19:08 +0200)
committerJoerg Roedel <[email protected]>
Fri, 4 Sep 2020 08:57:13 +0000 (10:57 +0200)
The of_device_id is included unconditionally by of.h header and used
in the driver as well.  Remove of_match_ptr to fix W=1 compile test
warning with !CONFIG_OF:

    drivers/iommu/qcom_iommu.c:910:34: warning: 'qcom_iommu_of_match' defined but not used [-Wunused-const-variable=]
      910 | static const struct of_device_id qcom_iommu_of_match[] = {

Signed-off-by: Krzysztof Kozlowski <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Joerg Roedel <[email protected]>
drivers/iommu/arm/arm-smmu/qcom_iommu.c

index af6bec3ace00777a64d686ff7c07add15e6eeb6f..9535a6af7553c7fa3caba1c1b891069e4edb9b1e 100644 (file)
@@ -752,7 +752,7 @@ static const struct of_device_id ctx_of_match[] = {
 static struct platform_driver qcom_iommu_ctx_driver = {
        .driver = {
                .name           = "qcom-iommu-ctx",
-               .of_match_table = of_match_ptr(ctx_of_match),
+               .of_match_table = ctx_of_match,
        },
        .probe  = qcom_iommu_ctx_probe,
        .remove = qcom_iommu_ctx_remove,
@@ -915,7 +915,7 @@ static const struct of_device_id qcom_iommu_of_match[] = {
 static struct platform_driver qcom_iommu_driver = {
        .driver = {
                .name           = "qcom-iommu",
-               .of_match_table = of_match_ptr(qcom_iommu_of_match),
+               .of_match_table = qcom_iommu_of_match,
                .pm             = &qcom_iommu_pm_ops,
        },
        .probe  = qcom_iommu_device_probe,
This page took 0.059675 seconds and 4 git commands to generate.