summaryrefslogtreecommitdiff
path: root/drivers/reset
diff options
context:
space:
mode:
authorSai Krishna Potthuri <lakshmi.sai.krishna.potthuri@xilinx.com>2021-06-23 13:46:20 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-09-12 08:56:39 +0200
commit92abb09f7ab704a5e391c4cd57d69aec1d161cea (patch)
treefdda5cf357f2747c79aa3fc2cad4218378e5f9ad /drivers/reset
parentb820c4c651ea1604445b8b5e087e39565a91fd95 (diff)
downloadlinux-92abb09f7ab704a5e391c4cd57d69aec1d161cea.tar.gz
linux-92abb09f7ab704a5e391c4cd57d69aec1d161cea.tar.bz2
linux-92abb09f7ab704a5e391c4cd57d69aec1d161cea.zip
reset: reset-zynqmp: Fixed the argument data type
[ Upstream commit ed104ca4bd9c405b41e968ad4ece51f6462e90b6 ] This patch changes the data type of the variable 'val' from int to u32. Addresses-Coverity: argument of type "int *" is incompatible with parameter of type "u32 *" Signed-off-by: Sai Krishna Potthuri <lakshmi.sai.krishna.potthuri@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com> Link: https://lore.kernel.org/r/925cebbe4eb73c7d0a536da204748d33c7100d8c.1624448778.git.michal.simek@xilinx.com Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/reset')
-rw-r--r--drivers/reset/reset-zynqmp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/reset/reset-zynqmp.c b/drivers/reset/reset-zynqmp.c
index 99e75d92dada..8a7473b6ba58 100644
--- a/drivers/reset/reset-zynqmp.c
+++ b/drivers/reset/reset-zynqmp.c
@@ -46,7 +46,8 @@ static int zynqmp_reset_status(struct reset_controller_dev *rcdev,
unsigned long id)
{
struct zynqmp_reset_data *priv = to_zynqmp_reset_data(rcdev);
- int val, err;
+ int err;
+ u32 val;
err = priv->eemi_ops->reset_get_status(ZYNQMP_RESET_ID + id, &val);
if (err)