iommu/tegra: smmu: Fix uninitialized var warning
authorHiroshi Doyu <hdoyu@nvidia.com>
Mon, 25 Jun 2012 11:23:58 +0000 (14:23 +0300)
committerJoerg Roedel <joerg.roedel@amd.com>
Mon, 25 Jun 2012 11:50:44 +0000 (13:50 +0200)
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>
drivers/iommu/tegra-smmu.c

index cc6aba4..becfc61 100644 (file)
@@ -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;