summaryrefslogtreecommitdiffstats
path: root/drivers/soc
diff options
context:
space:
mode:
authorLaxman Dewangan <ldewangan@nvidia.com>2016-06-17 18:36:13 +0530
committerThierry Reding <treding@nvidia.com>2016-11-15 15:51:50 +0100
commit84cf85ea6ea29fc0c933a85fb3e900315759a581 (patch)
treed3c035c84c79f11b6d35a9ae10723de67748fdf3 /drivers/soc
parent6c0bd217c361fa820d953e33fc7b6b95571c28ac (diff)
downloadop-kernel-dev-84cf85ea6ea29fc0c933a85fb3e900315759a581.zip
op-kernel-dev-84cf85ea6ea29fc0c933a85fb3e900315759a581.tar.gz
soc/tegra: pmc: Correct type of variable for tegra_pmc_readl()
The function tegra_pmc_readl() returns the u32 type data and hence change the data type of variable where this data is stored to u32 type. Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-by: Jon Hunter <jonathanh@nvidia.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/soc')
-rw-r--r--drivers/soc/tegra/pmc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/soc/tegra/pmc.c b/drivers/soc/tegra/pmc.c
index 3013c6d..01da624 100644
--- a/drivers/soc/tegra/pmc.c
+++ b/drivers/soc/tegra/pmc.c
@@ -942,10 +942,10 @@ static int tegra_io_rail_prepare(unsigned int id, unsigned long *request,
return 0;
}
-static int tegra_io_rail_poll(unsigned long offset, unsigned long mask,
- unsigned long val, unsigned long timeout)
+static int tegra_io_rail_poll(unsigned long offset, u32 mask,
+ u32 val, unsigned long timeout)
{
- unsigned long value;
+ u32 value;
timeout = jiffies + msecs_to_jiffies(timeout);
OpenPOWER on IntegriCloud