This is an automatically generated commit which aids following Kernel patch history, as git will see the move and copy as a rename thus defeating the purpose. For the original discussion see: https://lists.openwrt.org/pipermail/openwrt-devel/2023-October/041673.html Signed-off-by: Kenneth Kasilag <kenneth@kasilag.me> Link: https://github.com/openwrt/openwrt/pull/21019 Signed-off-by: Jonas Jelonek <jelonek.jonas@gmail.com>
36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
From 08d0185e36ad8bb5902a73711bf114765d282161 Mon Sep 17 00:00:00 2001
|
|
From: Arnd Bergmann <arnd@arndb.de>
|
|
Date: Fri, 14 Mar 2025 16:49:59 +0100
|
|
Subject: [PATCH] net: airoha: fix CONFIG_DEBUG_FS check
|
|
|
|
The #if check causes a build failure when CONFIG_DEBUG_FS is turned
|
|
off:
|
|
|
|
In file included from drivers/net/ethernet/airoha/airoha_eth.c:17:
|
|
drivers/net/ethernet/airoha/airoha_eth.h:543:5: error: "CONFIG_DEBUG_FS" is not defined, evaluates to 0 [-Werror=undef]
|
|
543 | #if CONFIG_DEBUG_FS
|
|
| ^~~~~~~~~~~~~~~
|
|
|
|
Replace it with the correct #ifdef.
|
|
|
|
Fixes: 3fe15c640f38 ("net: airoha: Introduce PPE debugfs support")
|
|
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
|
|
Acked-by: Lorenzo Bianconi <lorenzo@kernel.org>
|
|
Link: https://patch.msgid.link/20250314155009.4114308-1-arnd@kernel.org
|
|
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
|
|
---
|
|
drivers/net/ethernet/airoha/airoha_eth.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/net/ethernet/airoha/airoha_eth.h
|
|
+++ b/drivers/net/ethernet/airoha/airoha_eth.h
|
|
@@ -540,7 +540,7 @@ void airoha_ppe_deinit(struct airoha_eth
|
|
struct airoha_foe_entry *airoha_ppe_foe_get_entry(struct airoha_ppe *ppe,
|
|
u32 hash);
|
|
|
|
-#if CONFIG_DEBUG_FS
|
|
+#ifdef CONFIG_DEBUG_FS
|
|
int airoha_ppe_debugfs_init(struct airoha_ppe *ppe);
|
|
#else
|
|
static inline int airoha_ppe_debugfs_init(struct airoha_ppe *ppe)
|