[PATCH][next] regulator: rtq6752: make const read-only array fault_mask static

Colin Ian King posted 1 patch 9 months ago
drivers/regulator/rtq6752-regulator.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH][next] regulator: rtq6752: make const read-only array fault_mask static
Posted by Colin Ian King 9 months ago
Don't populate the const read-only array fault_mask on the stack at run
time, instead make it static.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/regulator/rtq6752-regulator.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/regulator/rtq6752-regulator.c b/drivers/regulator/rtq6752-regulator.c
index d35d844eff3b..618904ede72c 100644
--- a/drivers/regulator/rtq6752-regulator.c
+++ b/drivers/regulator/rtq6752-regulator.c
@@ -105,7 +105,7 @@ static int rtq6752_get_error_flags(struct regulator_dev *rdev,
 				   unsigned int *flags)
 {
 	unsigned int val, events = 0;
-	const unsigned int fault_mask[] = {
+	static const unsigned int fault_mask[] = {
 		RTQ6752_PAVDDF_MASK, RTQ6752_NAVDDF_MASK };
 	int rid = rdev_get_id(rdev), ret;
 
-- 
2.49.0
Re: [PATCH][next] regulator: rtq6752: make const read-only array fault_mask static
Posted by Mark Brown 9 months ago
On Mon, 17 Mar 2025 16:58:45 +0000, Colin Ian King wrote:
> Don't populate the const read-only array fault_mask on the stack at run
> time, instead make it static.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next

Thanks!

[1/1] regulator: rtq6752: make const read-only array fault_mask static
      commit: 502d16c0bd8fa40ba194f00ccac4bc205a5c253f

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark