summaryrefslogtreecommitdiffstats
path: root/drivers/regulator
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>2023-08-10 13:19:13 +0200
committerMark Brown <broonie@kernel.org>2023-08-10 15:44:45 +0100
commitb29f42c6629bb3bd3d479592d40a7e4c73461a01 (patch)
tree246027ea4958fee60d4b61dbf00222af02b414df /drivers/regulator
parentfddc9bb6e277b99b0410410794d156e963aa8f0b (diff)
downloadlinux-stable-b29f42c6629bb3bd3d479592d40a7e4c73461a01.tar.gz
linux-stable-b29f42c6629bb3bd3d479592d40a7e4c73461a01.tar.bz2
linux-stable-b29f42c6629bb3bd3d479592d40a7e4c73461a01.zip
regulator: max77857: Fix Wvoid-pointer-to-enum-cast warning
'id' is an enum, thus cast of pointer on 64-bit compile test with W=1 causes: max77857-regulator.c:56:24: error: cast to smaller integer type 'enum max77857_id' from 'void *' [-Werror,-Wvoid-pointer-to-enum-cast] Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Link: https://lore.kernel.org/r/20230810111914.204847-2-krzysztof.kozlowski@linaro.org Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/max77857-regulator.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/regulator/max77857-regulator.c b/drivers/regulator/max77857-regulator.c
index 44a510547318..145ad0281857 100644
--- a/drivers/regulator/max77857-regulator.c
+++ b/drivers/regulator/max77857-regulator.c
@@ -53,7 +53,7 @@ enum max77857_id {
static bool max77857_volatile_reg(struct device *dev, unsigned int reg)
{
- enum max77857_id id = (enum max77857_id)dev_get_drvdata(dev);
+ enum max77857_id id = (uintptr_t)dev_get_drvdata(dev);
switch (id) {
case ID_MAX77831:
@@ -91,7 +91,7 @@ static int max77857_get_status(struct regulator_dev *rdev)
static unsigned int max77857_get_mode(struct regulator_dev *rdev)
{
- enum max77857_id id = (enum max77857_id)rdev_get_drvdata(rdev);
+ enum max77857_id id = (uintptr_t)rdev_get_drvdata(rdev);
unsigned int regval;
int ret;
@@ -125,7 +125,7 @@ static unsigned int max77857_get_mode(struct regulator_dev *rdev)
static int max77857_set_mode(struct regulator_dev *rdev, unsigned int mode)
{
- enum max77857_id id = (enum max77857_id)rdev_get_drvdata(rdev);
+ enum max77857_id id = (uintptr_t)rdev_get_drvdata(rdev);
unsigned int reg, val;
switch (id) {