iommu/tegra: smmu: Fix uninitialized var warning
For the compiler warning, uninitizlized var when getting value by a pointer. Signed-off-by: Hiroshi DOYU <hdoyu@nvidia.com> Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
This commit is contained in:
parent
0547c2f56e
commit
ff7636292a
|
@ -902,8 +902,8 @@ static int tegra_smmu_probe(struct platform_device *pdev)
|
|||
struct smmu_device *smmu;
|
||||
struct device *dev = &pdev->dev;
|
||||
int i, asids, err = 0;
|
||||
dma_addr_t base;
|
||||
size_t bytes, size;
|
||||
dma_addr_t uninitialized_var(base);
|
||||
size_t bytes, uninitialized_var(size);
|
||||
|
||||
if (smmu_handle)
|
||||
return -EIO;
|
||||
|
|
Loading…
Reference in New Issue