* [PATCH net] net: macb: drop CONFIG_OF #if block
@ 2026-08-20 17:08 Théo Lebrun
2026-08-20 17:26 ` Nicolai Buchwitz
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Théo Lebrun @ 2026-08-20 17:08 UTC (permalink / raw)
To: Conor Dooley, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Nicolai Buchwitz
Cc: netdev, linux-kernel, Paolo Valerio, Nicolai Buchwitz,
Gregory CLEMENT, Thomas Petazzoni, Théo Lebrun
Fix -Wimplicit-function-declaration error on CONFIG_OF=n builds:
drivers/net/ethernet/cadence/macb_main.c: In function ‘macb_probe’:
drivers/net/ethernet/cadence/macb_main.c:5951:15: error: implicit
declaration of function ‘macb_alloc_tieoff’ [...]
5951 | err = macb_alloc_tieoff(bp);
| ^~~~~~~~~~~~~~~~~
drivers/net/ethernet/cadence/macb_main.c:5973:9: error: implicit
declaration of function ‘macb_free_tieoff’ [...]
5973 | macb_free_tieoff(bp);
| ^~~~~~~~~~~~~~~~
Error got introduced because functions are mistakenly declared in a
`#if defined(CONFIG_OF)` block. Instead of moving functions around,
avoid any future mistake and drop the block entirely.
Change the module content slightly on CONFIG_OF=n. Previously match
tables were ignored. Now they appear in the resulting build. This is
considered trivial in size by most and is the common case:
⟩ 18 out of 254 OF net drivers reference CONFIG_OF
⟩ rg -lF 'MODULE_DEVICE_TABLE(of,' drivers/net/ | tee /tmp/a | wc -l
254
⟩ xargs -a /tmp/a rg -l CONFIG_OF | wc -l
18
Tangent: no, of_match_ptr() does not imply that the compiler can
optimize out match tables, because MODULE_DEVICE_TABLE(of, ...)
unconditionally puts the match tables in the binary. It is only meant
to avoid undefined declaration issues when match tables are hidden
behind a #ifdef, as was done before. We therefore drop the macro call.
Fixes: 5262eab9462a ("net: macb: allocate tieoff descriptor once across device lifetime")
Signed-off-by: Théo Lebrun <theo.lebrun@bootlin.com>
---
This is a fix to a build issue present on net/main (91ec20351349) and
linux-next/master(7079a12d7506). The problematic just landed in
net/main.
Two fixes [0][1] were sent previously (both the same solution):
[PATCH net] net: macb: Move macb_{alloc,free}_tieoff() out of CONFIG_OF block
[PATCH net-next] net: macb: fix CONFIG_OF=n build
Instead I'm suggesting [2] we drop the error-prone preprocessor blocks
and do as everyone else.
[0]: https://lore.kernel.org/netdev/20260818-macb-fix-no-of-build-v1-1-f2a009616384@kernel.org/
[1]: https://lore.kernel.org/netdev/20260819040913.109367-1-running910@gmail.com/
[2]: https://lore.kernel.org/netdev/DKT4CBU8YB5G.2W0766H2NU6Y8@bootlin.com/
---
drivers/net/ethernet/cadence/macb_main.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/net/ethernet/cadence/macb_main.c b/drivers/net/ethernet/cadence/macb_main.c
index 1476bce77f34..76ee4f506033 100644
--- a/drivers/net/ethernet/cadence/macb_main.c
+++ b/drivers/net/ethernet/cadence/macb_main.c
@@ -4926,7 +4926,6 @@ static const struct macb_usrio_config at91_default_usrio = {
.clken = MACB_BIT(CLKEN),
};
-#if defined(CONFIG_OF)
/* 1518 rounded up */
#define AT91ETHER_MAX_RBUFF_SZ 0x600
/* max number of receive buffers */
@@ -5754,7 +5753,6 @@ static const struct of_device_id macb_dt_ids[] = {
{ /* sentinel */ }
};
MODULE_DEVICE_TABLE(of, macb_dt_ids);
-#endif /* CONFIG_OF */
static const struct macb_config default_gem_config = {
.caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE |
@@ -6267,7 +6265,7 @@ static struct platform_driver macb_driver = {
.remove = macb_remove,
.driver = {
.name = "macb",
- .of_match_table = of_match_ptr(macb_dt_ids),
+ .of_match_table = macb_dt_ids,
.pm = &macb_pm_ops,
},
.shutdown = macb_shutdown,
---
base-commit: 91ec2035134982b98fab0609a9fd8480e8217dc1
change-id: 20260820-macb-fix-x86-eb78a1fcc63e
Best regards,
--
Théo Lebrun <theo.lebrun@bootlin.com>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH net] net: macb: drop CONFIG_OF #if block
2026-08-20 17:08 [PATCH net] net: macb: drop CONFIG_OF #if block Théo Lebrun
@ 2026-08-20 17:26 ` Nicolai Buchwitz
2026-08-20 18:40 ` Conor Dooley
2026-08-20 19:30 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: Nicolai Buchwitz @ 2026-08-20 17:26 UTC (permalink / raw)
To: Théo Lebrun, Conor Dooley, Andrew Lunn, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni
Cc: netdev, linux-kernel, Paolo Valerio, Gregory CLEMENT,
Thomas Petazzoni
Hi Théo
On August 20, 2026 7:08:20 PM GMT+02:00, "Théo Lebrun" <theo.lebrun@bootlin.com> wrote:
>Fix -Wimplicit-function-declaration error on CONFIG_OF=n builds:
>
> drivers/net/ethernet/cadence/macb_main.c: In function ‘macb_probe’:
> drivers/net/ethernet/cadence/macb_main.c:5951:15: error: implicit
> declaration of function ‘macb_alloc_tieoff’ [...]
> 5951 | err = macb_alloc_tieoff(bp);
> | ^~~~~~~~~~~~~~~~~
> drivers/net/ethernet/cadence/macb_main.c:5973:9: error: implicit
> declaration of function ‘macb_free_tieoff’ [...]
> 5973 | macb_free_tieoff(bp);
> | ^~~~~~~~~~~~~~~~
>
>Error got introduced because functions are mistakenly declared in a
>`#if defined(CONFIG_OF)` block. Instead of moving functions around,
>avoid any future mistake and drop the block entirely.
>
>Change the module content slightly on CONFIG_OF=n. Previously match
>tables were ignored. Now they appear in the resulting build. This is
>considered trivial in size by most and is the common case:
>
> ⟩ 18 out of 254 OF net drivers reference CONFIG_OF
> ⟩ rg -lF 'MODULE_DEVICE_TABLE(of,' drivers/net/ | tee /tmp/a | wc -l
> 254
> ⟩ xargs -a /tmp/a rg -l CONFIG_OF | wc -l
> 18
>
>Tangent: no, of_match_ptr() does not imply that the compiler can
>optimize out match tables, because MODULE_DEVICE_TABLE(of, ...)
>unconditionally puts the match tables in the binary. It is only meant
>to avoid undefined declaration issues when match tables are hidden
>behind a #ifdef, as was done before. We therefore drop the macro call.
>
>Fixes: 5262eab9462a ("net: macb: allocate tieoff descriptor once across device lifetime")
>Signed-off-by: Théo Lebrun <theo.lebrun@bootlin.com>
>---
>This is a fix to a build issue present on net/main (91ec20351349) and
>linux-next/master(7079a12d7506). The problematic just landed in
>net/main.
>
>Two fixes [0][1] were sent previously (both the same solution):
>[PATCH net] net: macb: Move macb_{alloc,free}_tieoff() out of CONFIG_OF block
>[PATCH net-next] net: macb: fix CONFIG_OF=n build
>
>Instead I'm suggesting [2] we drop the error-prone preprocessor blocks
>and do as everyone else.
>
>[0]: https://lore.kernel.org/netdev/20260818-macb-fix-no-of-build-v1-1-f2a009616384@kernel.org/
>[1]: https://lore.kernel.org/netdev/20260819040913.109367-1-running910@gmail.com/
>[2]: https://lore.kernel.org/netdev/DKT4CBU8YB5G.2W0766H2NU6Y8@bootlin.com/
>---
> drivers/net/ethernet/cadence/macb_main.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
>diff --git a/drivers/net/ethernet/cadence/macb_main.c b/drivers/net/ethernet/cadence/macb_main.c
>index 1476bce77f34..76ee4f506033 100644
>--- a/drivers/net/ethernet/cadence/macb_main.c
>+++ b/drivers/net/ethernet/cadence/macb_main.c
>@@ -4926,7 +4926,6 @@ static const struct macb_usrio_config at91_default_usrio = {
> .clken = MACB_BIT(CLKEN),
> };
>
>-#if defined(CONFIG_OF)
> /* 1518 rounded up */
> #define AT91ETHER_MAX_RBUFF_SZ 0x600
> /* max number of receive buffers */
>@@ -5754,7 +5753,6 @@ static const struct of_device_id macb_dt_ids[] = {
> { /* sentinel */ }
> };
> MODULE_DEVICE_TABLE(of, macb_dt_ids);
>-#endif /* CONFIG_OF */
>
> static const struct macb_config default_gem_config = {
> .caps = MACB_CAPS_GIGABIT_MODE_AVAILABLE |
>@@ -6267,7 +6265,7 @@ static struct platform_driver macb_driver = {
> .remove = macb_remove,
> .driver = {
> .name = "macb",
>- .of_match_table = of_match_ptr(macb_dt_ids),
>+ .of_match_table = macb_dt_ids,
> .pm = &macb_pm_ops,
> },
> .shutdown = macb_shutdown,
>
>---
>base-commit: 91ec2035134982b98fab0609a9fd8480e8217dc1
>change-id: 20260820-macb-fix-x86-eb78a1fcc63e
>
>Best regards,
>--
>Théo Lebrun <theo.lebrun@bootlin.com>
>
Reviewed-by: Nicolai Buchwitz <nb@tipi-net.de>
Thanks
Nicolai
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net] net: macb: drop CONFIG_OF #if block
2026-08-20 17:08 [PATCH net] net: macb: drop CONFIG_OF #if block Théo Lebrun
2026-08-20 17:26 ` Nicolai Buchwitz
@ 2026-08-20 18:40 ` Conor Dooley
2026-08-20 19:30 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: Conor Dooley @ 2026-08-20 18:40 UTC (permalink / raw)
To: Théo Lebrun
Cc: Conor Dooley, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Nicolai Buchwitz, netdev,
linux-kernel, Paolo Valerio, Gregory CLEMENT, Thomas Petazzoni
[-- Attachment #1: Type: text/plain, Size: 52 bytes --]
Acked-by: Conor Dooley <conor.dooley@microchip.com>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net] net: macb: drop CONFIG_OF #if block
2026-08-20 17:08 [PATCH net] net: macb: drop CONFIG_OF #if block Théo Lebrun
2026-08-20 17:26 ` Nicolai Buchwitz
2026-08-20 18:40 ` Conor Dooley
@ 2026-08-20 19:30 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-08-20 19:30 UTC (permalink / raw)
To: =?utf-8?q?Th=C3=A9o_Lebrun_=3Ctheo=2Elebrun=40bootlin=2Ecom=3E?=
Cc: conor.dooley, andrew+netdev, davem, edumazet, kuba, pabeni, nb,
netdev, linux-kernel, pvalerio, gregory.clement, thomas.petazzoni
Hello:
This patch was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Thu, 20 Aug 2026 19:08:20 +0200 you wrote:
> Fix -Wimplicit-function-declaration error on CONFIG_OF=n builds:
>
> drivers/net/ethernet/cadence/macb_main.c: In function ‘macb_probe’:
> drivers/net/ethernet/cadence/macb_main.c:5951:15: error: implicit
> declaration of function ‘macb_alloc_tieoff’ [...]
> 5951 | err = macb_alloc_tieoff(bp);
> | ^~~~~~~~~~~~~~~~~
> drivers/net/ethernet/cadence/macb_main.c:5973:9: error: implicit
> declaration of function ‘macb_free_tieoff’ [...]
> 5973 | macb_free_tieoff(bp);
> | ^~~~~~~~~~~~~~~~
>
> [...]
Here is the summary with links:
- [net] net: macb: drop CONFIG_OF #if block
https://git.kernel.org/netdev/net/c/ec518a7c4ba1
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-08-20 19:31 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-20 17:08 [PATCH net] net: macb: drop CONFIG_OF #if block Théo Lebrun
2026-08-20 17:26 ` Nicolai Buchwitz
2026-08-20 18:40 ` Conor Dooley
2026-08-20 19:30 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox