mirror of https://gitee.com/openkylin/linux.git
iommu/qcom: Drop of_match_ptr to fix -Wunused-const-variable
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 <krzk@kernel.org> Link: https://lore.kernel.org/r/20200728170859.28143-3-krzk@kernel.org Signed-off-by: Joerg Roedel <jroedel@suse.de>
This commit is contained in:
parent
f75aef392f
commit
7aaf0b0e8e
|
@ -752,7 +752,7 @@ static const struct of_device_id ctx_of_match[] = {
|
||||||
static struct platform_driver qcom_iommu_ctx_driver = {
|
static struct platform_driver qcom_iommu_ctx_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "qcom-iommu-ctx",
|
.name = "qcom-iommu-ctx",
|
||||||
.of_match_table = of_match_ptr(ctx_of_match),
|
.of_match_table = ctx_of_match,
|
||||||
},
|
},
|
||||||
.probe = qcom_iommu_ctx_probe,
|
.probe = qcom_iommu_ctx_probe,
|
||||||
.remove = qcom_iommu_ctx_remove,
|
.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 = {
|
static struct platform_driver qcom_iommu_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "qcom-iommu",
|
.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,
|
.pm = &qcom_iommu_pm_ops,
|
||||||
},
|
},
|
||||||
.probe = qcom_iommu_device_probe,
|
.probe = qcom_iommu_device_probe,
|
||||||
|
|
Loading…
Reference in New Issue