Home
last modified time | relevance | path

Searched hist:d9e7eb152bb24f06028a0d10b054e39ebdf14f9c (Results 1 – 1 of 1) sorted by relevance

/linux/drivers/iommu/
H A Drockchip-iommu.cdiff d9e7eb152bb24f06028a0d10b054e39ebdf14f9c Fri Apr 10 23:58:24 CEST 2015 Arnd Bergmann <arnd@arndb.de> iommu/rockchip: Fix build without CONFIG_OF

The rockchip iommu driver references its of_device_id table
from the init function, which fails to build when the table
is undefined:

iommu/rockchip-iommu.c: In function 'rk_iommu_init':
iommu/rockchip-iommu.c:1029:35: error: 'rk_iommu_dt_ids' undeclared (first use in this function)
np = of_find_matching_node(NULL, rk_iommu_dt_ids);

This removes the #ifdef and the corresponding of_match_ptr wrapper
to make it build both with CONFIG_OF enabled or disabled.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 425061b0f5074 ("iommu/rockchip: Play nice in multi-platform builds")
Reviewed-by: Thierry Reding <treding@nvidia.com>
Reviewed-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Joerg Roedel <jroedel@suse.de>