[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1419872808-11958-1-git-send-email-aniroop.mathur@gmail.com>
Date: Mon, 29 Dec 2014 22:36:48 +0530
From: Aniroop Mathur <aniroop.mathur@...il.com>
To: <lgirdwood@...il.com>, <broonie@...nel.org>,
<linux-kernel@...r.kernel.org>
Cc: <aniroop.mathur@...il.com>, <a.mathur@...sung.com>
Subject: [PATCH] regulator: core: Fix format specifier warning
Signed-off-by: Aniroop Mathur <a.mathur@...sung.com>
---
drivers/regulator/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index b0729ef..f380f04 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -3551,7 +3551,7 @@ regulator_register(const struct regulator_desc *regulator_desc,
rdev->dev.of_node = of_node_get(config->of_node);
rdev->dev.parent = dev;
dev_set_name(&rdev->dev, "regulator.%lu",
- atomic_inc_return(®ulator_no));
+ (unsigned long) atomic_inc_return(®ulator_no));
ret = device_register(&rdev->dev);
if (ret != 0) {
put_device(&rdev->dev);
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists