diff options
author | Hiroshi Doyu <hdoyu@nvidia.com> | 2013-03-27 11:38:23 +0200 |
---|---|---|
committer | Harshada Kale <hkale@nvidia.com> | 2013-06-10 03:47:28 -0700 |
commit | cf02b0d288d0ad9d2b27e6c808caf7062a53d9ae (patch) | |
tree | 0a4ae49227230e63bc79bc1a0d09eda6c21a8b73 /drivers/iommu | |
parent | b0bc833b6bdcae2756cc5cb30cf5c30bb81c3156 (diff) |
iommu/tegra: smmu: Fix u32 -> u64 for swgid
Fix u32 -> u64 for swgid.
bug 1286500
Change-Id: I2ef4bdab4ec80e1578dd0ee8f3208179d295fb79
Reported-by: Terje Bergstrom <tbergstrom@nvidia.com>
(cherry picked from commit eb64012d3a56e6499d5eb62e671a44641ab8987d)
Signed-off-by: Hiroshi Doyu <hdoyu@nvidia.com>
Reviewed-on: http://git-master/r/234118
Reviewed-by: Automatic_Commit_Validation_User
Reviewed-by: Krishna Reddy <vdumpa@nvidia.com>
Diffstat (limited to 'drivers/iommu')
-rw-r--r-- | drivers/iommu/tegra-smmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/tegra-smmu.c b/drivers/iommu/tegra-smmu.c index 09977482dd41..614807f1ae95 100644 --- a/drivers/iommu/tegra-smmu.c +++ b/drivers/iommu/tegra-smmu.c @@ -369,7 +369,7 @@ static int __smmu_client_set_hwgrp(struct smmu_client *c, u64 map, int on) } -static int smmu_client_set_hwgrp(struct smmu_client *c, u32 map, int on) +static int smmu_client_set_hwgrp(struct smmu_client *c, u64 map, int on) { u32 val; unsigned long flags; |