iommu/mediatek: Fix a build warning of BIT(32) in ARM
authorYong Wu <yong.wu@mediatek.com>
Thu, 24 Aug 2017 07:42:12 +0000 (15:42 +0800)
committerJoerg Roedel <jroedel@suse.de>
Mon, 28 Aug 2017 09:26:21 +0000 (11:26 +0200)
commit419399804382d1aa7a3fc652915e8f3b61aff941
tree468c67b725d67bd69670de5f8f64ebd786b3bf37
parent4f1c8ea16b643be339f0e80b3535bc5b5fe8f9a3
iommu/mediatek: Fix a build warning of BIT(32) in ARM

The commit ("iommu/mediatek: Enlarge the validate PA range
for 4GB mode") introduce the following build warning while ARCH=arm:

   drivers/iommu/mtk_iommu.c: In function 'mtk_iommu_iova_to_phys':
   include/linux/bitops.h:6:24: warning: left shift count >= width
of type [-Wshift-count-overflow]
    #define BIT(nr)   (1UL << (nr))
                           ^
>> drivers/iommu/mtk_iommu.c:407:9: note: in expansion of macro 'BIT'
      pa |= BIT(32);

  drivers/iommu/mtk_iommu.c: In function 'mtk_iommu_probe':
   include/linux/bitops.h:6:24: warning: left shift count >= width
of type [-Wshift-count-overflow]
    #define BIT(nr)   (1UL << (nr))
                           ^
   drivers/iommu/mtk_iommu.c:589:35: note: in expansion of macro 'BIT'
     data->enable_4GB = !!(max_pfn > (BIT(32) >> PAGE_SHIFT));

Use BIT_ULL instead of BIT.

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