public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
From: Sasha Levin <sashal@kernel.org>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>,
	Philipp Zabel <p.zabel@pengutronix.de>,
	Sasha Levin <sashal@kernel.org>,
	Steen.Hegelund@microchip.com, robh@kernel.org,
	dlemoal@kernel.org
Subject: [PATCH AUTOSEL 5.10 1/9] reset: hisilicon: hi6220: fix Wvoid-pointer-to-enum-cast warning
Date: Mon, 25 Dec 2023 19:24:45 -0500	[thread overview]
Message-ID: <20231226002526.6605-1-sashal@kernel.org> (raw)

From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

[ Upstream commit b5ec294472794ed9ecba0cb4b8208372842e7e0d ]

'type' is an enum, thus cast of pointer on 64-bit compile test with W=1
causes:

  hi6220_reset.c:166:9: error: cast to smaller integer type 'enum hi6220_reset_ctrl_type' from 'const void *' [-Werror,-Wvoid-pointer-to-enum-cast]

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20230810091300.70197-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/reset/hisilicon/hi6220_reset.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/reset/hisilicon/hi6220_reset.c b/drivers/reset/hisilicon/hi6220_reset.c
index 19926506d0335..2a7688fa9b9ba 100644
--- a/drivers/reset/hisilicon/hi6220_reset.c
+++ b/drivers/reset/hisilicon/hi6220_reset.c
@@ -164,7 +164,7 @@ static int hi6220_reset_probe(struct platform_device *pdev)
 	if (!data)
 		return -ENOMEM;
 
-	type = (enum hi6220_reset_ctrl_type)of_device_get_match_data(dev);
+	type = (uintptr_t)of_device_get_match_data(dev);
 
 	regmap = syscon_node_to_regmap(np);
 	if (IS_ERR(regmap)) {
-- 
2.43.0


             reply	other threads:[~2023-12-26  0:25 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-26  0:24 Sasha Levin [this message]
2023-12-26  0:24 ` [PATCH AUTOSEL 5.10 2/9] Input: atkbd - skip ATKBD_CMD_GETID in translated mode Sasha Levin
2023-12-26  0:24 ` [PATCH AUTOSEL 5.10 3/9] Input: i8042 - add nomux quirk for Acer P459-G2-M Sasha Levin
2023-12-26  0:24 ` [PATCH AUTOSEL 5.10 4/9] Input: amimouse - convert to platform remove callback returning void Sasha Levin
2023-12-26  0:24 ` [PATCH AUTOSEL 5.10 5/9] s390/scm: fix virtual vs physical address confusion Sasha Levin
2023-12-26  0:24 ` [PATCH AUTOSEL 5.10 6/9] ARC: fix spare error Sasha Levin
2023-12-26  0:24 ` [PATCH AUTOSEL 5.10 7/9] Input: xpad - add Razer Wolverine V2 support Sasha Levin
2023-12-26  0:24 ` [PATCH AUTOSEL 5.10 8/9] i2c: rk3x: fix potential spinlock recursion on poll Sasha Levin
2023-12-26  0:24 ` [PATCH AUTOSEL 5.10 9/9] ida: Fix crash in ida_free when the bitmap is empty Sasha Levin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20231226002526.6605-1-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=Steen.Hegelund@microchip.com \
    --cc=dlemoal@kernel.org \
    --cc=krzysztof.kozlowski@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=p.zabel@pengutronix.de \
    --cc=robh@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox