iommu/mediatek: Fix a build fail of m4u_type
authorYong Wu <yong.wu@mediatek.com>
Thu, 24 Aug 2017 07:42:11 +0000 (15:42 +0800)
committerJoerg Roedel <jroedel@suse.de>
Mon, 28 Aug 2017 09:26:21 +0000 (11:26 +0200)
commit4f1c8ea16b643be339f0e80b3535bc5b5fe8f9a3
tree9ee439dc6713fab1a9406872cc6c75584a38fb18
parent4f608d382e6fa982655e37d0e1b6c134fdc0e4c3
iommu/mediatek: Fix a build fail of m4u_type

The commit ("iommu/mediatek: Enlarge the validate PA range
for 4GB mode") introduce the following build error:

   drivers/iommu/mtk_iommu.c: In function 'mtk_iommu_hw_init':
>> drivers/iommu/mtk_iommu.c:536:30: error: 'const struct mtk_iommu_data'
 has no member named 'm4u_type'; did you mean 'm4u_dom'?
     if (data->enable_4GB && data->m4u_type != M4U_MT8173) {

This patch fix it, use "m4u_plat" instead of "m4u_type".

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Yong Wu <yong.wu@mediatek.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/mtk_iommu.c