linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mfd: Fix compilation without CONFIG_OF
@ 2025-06-02 20:09 Mario Limonciello
  2025-06-09  8:29 ` Jiri Slaby
  0 siblings, 1 reply; 5+ messages in thread
From: Mario Limonciello @ 2025-06-02 20:09 UTC (permalink / raw)
  To: mario.limonciello, lee, aaro.koskinen, andreas, khilman, rogerq,
	tony, tglx, jirislaby
  Cc: linux-omap

From: Mario Limonciello <mario.limonciello@amd.com>

When compiling without CONFIG_OF but with CONFIG_WERROR enabled
several mfd drivers fail with -Werror=unused-variable.

The assignment from these variables is only used in of_fwnode_handle()
and thus they can be moved to only be used directly in the macro.

Fixes: a36aa0f7226a2 ("mfd: Switch to irq_domain_create_*()")
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
---
 drivers/mfd/88pm860x-core.c | 5 ++---
 drivers/mfd/max8925-core.c  | 5 ++---
 drivers/mfd/twl4030-irq.c   | 3 +--
 3 files changed, 5 insertions(+), 8 deletions(-)

diff --git a/drivers/mfd/88pm860x-core.c b/drivers/mfd/88pm860x-core.c
index 488e346047c12..25300b53a8eff 100644
--- a/drivers/mfd/88pm860x-core.c
+++ b/drivers/mfd/88pm860x-core.c
@@ -573,7 +573,6 @@ static int device_irq_init(struct pm860x_chip *chip,
 	unsigned long flags = IRQF_TRIGGER_FALLING | IRQF_ONESHOT;
 	int data, mask, ret = -EINVAL;
 	int nr_irqs, irq_base = -1;
-	struct device_node *node = i2c->dev.of_node;
 
 	mask = PM8607_B0_MISC1_INV_INT | PM8607_B0_MISC1_INT_CLEAR
 		| PM8607_B0_MISC1_INT_MASK;
@@ -624,8 +623,8 @@ static int device_irq_init(struct pm860x_chip *chip,
 		ret = -EBUSY;
 		goto out;
 	}
-	irq_domain_create_legacy(of_fwnode_handle(node), nr_irqs, chip->irq_base, 0,
-				 &pm860x_irq_domain_ops, chip);
+	irq_domain_create_legacy(of_fwnode_handle(i2c->dev.of_node), nr_irqs,
+				 chip->irq_base, 0, &pm860x_irq_domain_ops, chip);
 	chip->core_irq = i2c->irq;
 	if (!chip->core_irq)
 		goto out;
diff --git a/drivers/mfd/max8925-core.c b/drivers/mfd/max8925-core.c
index 78b16c67a5fc6..91388477ad2b7 100644
--- a/drivers/mfd/max8925-core.c
+++ b/drivers/mfd/max8925-core.c
@@ -656,7 +656,6 @@ static int max8925_irq_init(struct max8925_chip *chip, int irq,
 {
 	unsigned long flags = IRQF_TRIGGER_FALLING | IRQF_ONESHOT;
 	int ret;
-	struct device_node *node = chip->dev->of_node;
 
 	/* clear all interrupts */
 	max8925_reg_read(chip->i2c, MAX8925_CHG_IRQ1);
@@ -682,8 +681,8 @@ static int max8925_irq_init(struct max8925_chip *chip, int irq,
 		return -EBUSY;
 	}
 
-	irq_domain_create_legacy(of_fwnode_handle(node), MAX8925_NR_IRQS, chip->irq_base, 0,
-				 &max8925_irq_domain_ops, chip);
+	irq_domain_create_legacy(of_fwnode_handle(chip->dev->of_node), MAX8925_NR_IRQS,
+				 chip->irq_base, 0, &max8925_irq_domain_ops, chip);
 
 	/* request irq handler for pmic main irq*/
 	chip->core_irq = irq;
diff --git a/drivers/mfd/twl4030-irq.c b/drivers/mfd/twl4030-irq.c
index 232c2bfe8c180..a2ab5deef9e21 100644
--- a/drivers/mfd/twl4030-irq.c
+++ b/drivers/mfd/twl4030-irq.c
@@ -676,7 +676,6 @@ int twl4030_init_irq(struct device *dev, int irq_num)
 	static struct irq_chip	twl4030_irq_chip;
 	int			status, i;
 	int			irq_base, irq_end, nr_irqs;
-	struct			device_node *node = dev->of_node;
 
 	/*
 	 * TWL core and pwr interrupts must be contiguous because
@@ -691,7 +690,7 @@ int twl4030_init_irq(struct device *dev, int irq_num)
 		return irq_base;
 	}
 
-	irq_domain_create_legacy(of_fwnode_handle(node), nr_irqs, irq_base, 0,
+	irq_domain_create_legacy(of_fwnode_handle(dev->of_node), nr_irqs, irq_base, 0,
 				 &irq_domain_simple_ops, NULL);
 
 	irq_end = irq_base + TWL4030_CORE_NR_IRQS;
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] mfd: Fix compilation without CONFIG_OF
  2025-06-02 20:09 [PATCH] mfd: Fix compilation without CONFIG_OF Mario Limonciello
@ 2025-06-09  8:29 ` Jiri Slaby
  2025-06-09  8:31   ` Jiri Slaby
  0 siblings, 1 reply; 5+ messages in thread
From: Jiri Slaby @ 2025-06-09  8:29 UTC (permalink / raw)
  To: Mario Limonciello, mario.limonciello, lee, aaro.koskinen, andreas,
	khilman, rogerq, tony, tglx, Arnd Bergmann
  Cc: linux-omap

On 02. 06. 25, 22:09, Mario Limonciello wrote:
> From: Mario Limonciello <mario.limonciello@amd.com>
> 
> When compiling without CONFIG_OF but with CONFIG_WERROR enabled
> several mfd drivers fail with -Werror=unused-variable.
> 
> The assignment from these variables is only used in of_fwnode_handle()
> and thus they can be moved to only be used directly in the macro.
> 
> Fixes: a36aa0f7226a2 ("mfd: Switch to irq_domain_create_*()")
> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>

Arnd sent a fix for this already:
https://lore.kernel.org/all/20250520154106.2019525-1-arnd@kernel.org/

Hopefully all the fixes can be applied now, so no more duplicated 
efforts. Sorry for the breakage.

-- 
js
suse labs

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] mfd: Fix compilation without CONFIG_OF
  2025-06-09  8:29 ` Jiri Slaby
@ 2025-06-09  8:31   ` Jiri Slaby
  2025-06-09 13:09     ` Mario Limonciello
  2025-06-11 10:32     ` Jiri Slaby
  0 siblings, 2 replies; 5+ messages in thread
From: Jiri Slaby @ 2025-06-09  8:31 UTC (permalink / raw)
  To: Mario Limonciello, mario.limonciello, lee, aaro.koskinen, andreas,
	khilman, rogerq, tony, tglx, Arnd Bergmann, Nathan Chancellor
  Cc: linux-omap

On 09. 06. 25, 10:29, Jiri Slaby wrote:
> On 02. 06. 25, 22:09, Mario Limonciello wrote:
>> From: Mario Limonciello <mario.limonciello@amd.com>
>>
>> When compiling without CONFIG_OF but with CONFIG_WERROR enabled
>> several mfd drivers fail with -Werror=unused-variable.
>>
>> The assignment from these variables is only used in of_fwnode_handle()
>> and thus they can be moved to only be used directly in the macro.
>>
>> Fixes: a36aa0f7226a2 ("mfd: Switch to irq_domain_create_*()")
>> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
> 
> Arnd sent a fix for this already:
> https://lore.kernel.org/all/20250520154106.2019525-1-arnd@kernel.org/

And actually Nathan even before:
https://lore.kernel.org/all/20250508-mfd-fix-unused-node-variables-v1-1-df84d80cca55@kernel.org/

> Hopefully all the fixes can be applied now, so no more duplicated 
> efforts. Sorry for the breakage.
> 

-- 
js
suse labs


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] mfd: Fix compilation without CONFIG_OF
  2025-06-09  8:31   ` Jiri Slaby
@ 2025-06-09 13:09     ` Mario Limonciello
  2025-06-11 10:32     ` Jiri Slaby
  1 sibling, 0 replies; 5+ messages in thread
From: Mario Limonciello @ 2025-06-09 13:09 UTC (permalink / raw)
  To: Jiri Slaby, mario.limonciello, lee, aaro.koskinen, andreas,
	khilman, rogerq, tony, tglx, Arnd Bergmann, Nathan Chancellor
  Cc: linux-omap

On 6/9/2025 3:31 AM, Jiri Slaby wrote:
> On 09. 06. 25, 10:29, Jiri Slaby wrote:
>> On 02. 06. 25, 22:09, Mario Limonciello wrote:
>>> From: Mario Limonciello <mario.limonciello@amd.com>
>>>
>>> When compiling without CONFIG_OF but with CONFIG_WERROR enabled
>>> several mfd drivers fail with -Werror=unused-variable.
>>>
>>> The assignment from these variables is only used in of_fwnode_handle()
>>> and thus they can be moved to only be used directly in the macro.
>>>
>>> Fixes: a36aa0f7226a2 ("mfd: Switch to irq_domain_create_*()")
>>> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
>>
>> Arnd sent a fix for this already:
>> https://lore.kernel.org/all/20250520154106.2019525-1-arnd@kernel.org/
> 
> And actually Nathan even before:
> https://lore.kernel.org/all/20250508-mfd-fix-unused-node-variables-v1-1- 
> df84d80cca55@kernel.org/

Thanks for sharing those.

> 
>> Hopefully all the fixes can be applied now, so no more duplicated 
>> efforts. Sorry for the breakage.
>>
> 



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] mfd: Fix compilation without CONFIG_OF
  2025-06-09  8:31   ` Jiri Slaby
  2025-06-09 13:09     ` Mario Limonciello
@ 2025-06-11 10:32     ` Jiri Slaby
  1 sibling, 0 replies; 5+ messages in thread
From: Jiri Slaby @ 2025-06-11 10:32 UTC (permalink / raw)
  To: Mario Limonciello, mario.limonciello, lee, aaro.koskinen, andreas,
	khilman, rogerq, tony, tglx, Arnd Bergmann, Nathan Chancellor
  Cc: linux-omap

On 09. 06. 25, 10:31, Jiri Slaby wrote:
> On 09. 06. 25, 10:29, Jiri Slaby wrote:
>> On 02. 06. 25, 22:09, Mario Limonciello wrote:
>>> From: Mario Limonciello <mario.limonciello@amd.com>
>>>
>>> When compiling without CONFIG_OF but with CONFIG_WERROR enabled
>>> several mfd drivers fail with -Werror=unused-variable.
>>>
>>> The assignment from these variables is only used in of_fwnode_handle()
>>> and thus they can be moved to only be used directly in the macro.
>>>
>>> Fixes: a36aa0f7226a2 ("mfd: Switch to irq_domain_create_*()")
>>> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
>>
>> Arnd sent a fix for this already:
>> https://lore.kernel.org/all/20250520154106.2019525-1-arnd@kernel.org/
> 
> And actually Nathan even before:
> https://lore.kernel.org/all/20250508-mfd-fix-unused-node-variables-v1-1- 
> df84d80cca55@kernel.org/

Sorry to interrupt once again. It turns out Arnd used dev_fwnode() -- my 
intention, so I actually prefer that version.

>> Hopefully all the fixes can be applied now, so no more duplicated 
>> efforts. Sorry for the breakage.

thanks,
-- 
js
suse labs


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-06-11 10:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-02 20:09 [PATCH] mfd: Fix compilation without CONFIG_OF Mario Limonciello
2025-06-09  8:29 ` Jiri Slaby
2025-06-09  8:31   ` Jiri Slaby
2025-06-09 13:09     ` Mario Limonciello
2025-06-11 10:32     ` Jiri Slaby

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).