Message ID | 20201123163553.1666476-1-ciorneiioana@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 078eb55cdf25e0a621d406c233cc1b4acc31c82f |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net] dpaa2-eth: Fix compile error due to missing devlink support | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Clearly marked for net |
netdev/subject_prefix | success | Link |
netdev/source_inline | success | Was 0 now: 0 |
netdev/verify_signedoff | success | Link |
netdev/module_param | success | Was 0 now: 0 |
netdev/build_32bit | success | Errors and warnings before: 0 this patch: 0 |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 7 lines checked |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 0 this patch: 0 |
netdev/header_inline | success | Link |
netdev/stable | success | Stable not CCed |
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Mon, 23 Nov 2020 18:35:53 +0200 you wrote: > From: Ezequiel Garcia <ezequiel@collabora.com> > > The dpaa2 driver depends on devlink, so it should select > NET_DEVLINK in order to fix compile errors, such as: > > drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.o: in function `dpaa2_eth_rx_err': > dpaa2-eth.c:(.text+0x3cec): undefined reference to `devlink_trap_report' > drivers/net/ethernet/freescale/dpaa2/dpaa2-eth-devlink.o: in function `dpaa2_eth_dl_info_get': > dpaa2-eth-devlink.c:(.text+0x160): undefined reference to `devlink_info_driver_name_put' > > [...] Here is the summary with links: - [net] dpaa2-eth: Fix compile error due to missing devlink support https://git.kernel.org/netdev/net/c/078eb55cdf25 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/drivers/net/ethernet/freescale/dpaa2/Kconfig b/drivers/net/ethernet/freescale/dpaa2/Kconfig index c0e05f71826d..ee7a906e30b3 100644 --- a/drivers/net/ethernet/freescale/dpaa2/Kconfig +++ b/drivers/net/ethernet/freescale/dpaa2/Kconfig @@ -5,6 +5,7 @@ config FSL_DPAA2_ETH select PHYLINK select PCS_LYNX select FSL_XGMAC_MDIO + select NET_DEVLINK help This is the DPAA2 Ethernet driver supporting Freescale SoCs with DPAA2 (DataPath Acceleration Architecture v2).