iommu/tegra: assume CONFIG_OF in SMMU driver
Tegra only supports, and always enables, device tree. Remove all ifdefs for DT support from the driver. Signed-off-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Joerg Roedel <joro@8bytes.org>
This commit is contained in:
parent
e664e8c098
commit
573f414502
1 changed files with 1 additions and 3 deletions
|
@ -1267,13 +1267,11 @@ const struct dev_pm_ops tegra_smmu_pm_ops = {
|
||||||
.resume = tegra_smmu_resume,
|
.resume = tegra_smmu_resume,
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef CONFIG_OF
|
|
||||||
static struct of_device_id tegra_smmu_of_match[] = {
|
static struct of_device_id tegra_smmu_of_match[] = {
|
||||||
{ .compatible = "nvidia,tegra30-smmu", },
|
{ .compatible = "nvidia,tegra30-smmu", },
|
||||||
{ },
|
{ },
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(of, tegra_smmu_of_match);
|
MODULE_DEVICE_TABLE(of, tegra_smmu_of_match);
|
||||||
#endif
|
|
||||||
|
|
||||||
static struct platform_driver tegra_smmu_driver = {
|
static struct platform_driver tegra_smmu_driver = {
|
||||||
.probe = tegra_smmu_probe,
|
.probe = tegra_smmu_probe,
|
||||||
|
@ -1282,7 +1280,7 @@ static struct platform_driver tegra_smmu_driver = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.name = "tegra-smmu",
|
.name = "tegra-smmu",
|
||||||
.pm = &tegra_smmu_pm_ops,
|
.pm = &tegra_smmu_pm_ops,
|
||||||
.of_match_table = of_match_ptr(tegra_smmu_of_match),
|
.of_match_table = tegra_smmu_of_match,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue