Message ID | 20240829214838.2235031-2-rosenp@gmail.com (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | various cleanups | expand |
On Thu, Aug 29, 2024 at 02:48:20PM -0700, Rosen Penev wrote: > While this driver is meant for MIPS only, it can be compiled on x86 just > fine. Remove pointless parentheses while at it. > > Enables CI building of this driver. > > Signed-off-by: Rosen Penev <rosenp@gmail.com> Thanks, this seems to work well. Reviewed-by: Simon Horman <horms@kernel.org> As a follow-up, could you consider adding a MODULE_DESCRIPTION() to this module. It now gets flagged on x86_64 allmodconfig W=1 builds. ...
On Fri, Aug 30, 2024 at 8:49 AM Simon Horman <horms@kernel.org> wrote: > > On Thu, Aug 29, 2024 at 02:48:20PM -0700, Rosen Penev wrote: > > While this driver is meant for MIPS only, it can be compiled on x86 just > > fine. Remove pointless parentheses while at it. > > > > Enables CI building of this driver. > > > > Signed-off-by: Rosen Penev <rosenp@gmail.com> > > Thanks, this seems to work well. > > Reviewed-by: Simon Horman <horms@kernel.org> > > As a follow-up, could you consider adding a MODULE_DESCRIPTION() > to this module. It now gets flagged on x86_64 allmodconfig W=1 builds. v2 patchset? > > ...
On Fri, Aug 30, 2024 at 10:32:08AM -0700, Rosen Penev wrote: > On Fri, Aug 30, 2024 at 8:49 AM Simon Horman <horms@kernel.org> wrote: > > > > On Thu, Aug 29, 2024 at 02:48:20PM -0700, Rosen Penev wrote: > > > While this driver is meant for MIPS only, it can be compiled on x86 just > > > fine. Remove pointless parentheses while at it. > > > > > > Enables CI building of this driver. > > > > > > Signed-off-by: Rosen Penev <rosenp@gmail.com> > > > > Thanks, this seems to work well. > > > > Reviewed-by: Simon Horman <horms@kernel.org> > > > > As a follow-up, could you consider adding a MODULE_DESCRIPTION() > > to this module. It now gets flagged on x86_64 allmodconfig W=1 builds. > v2 patchset? I'd wait to see if this patchset is accepted. And if so, send a new patch separately. If not, perhaps add it to v2.
diff --git a/drivers/net/ethernet/atheros/Kconfig b/drivers/net/ethernet/atheros/Kconfig index 482c58c4c584..03b31bedc9a5 100644 --- a/drivers/net/ethernet/atheros/Kconfig +++ b/drivers/net/ethernet/atheros/Kconfig @@ -6,7 +6,7 @@ config NET_VENDOR_ATHEROS bool "Atheros devices" default y - depends on (PCI || ATH79) + depends on PCI || ATH79 || COMPILE_TEST help If you have a network (Ethernet) card belonging to this class, say Y. @@ -19,7 +19,7 @@ if NET_VENDOR_ATHEROS config AG71XX tristate "Atheros AR7XXX/AR9XXX built-in ethernet mac support" - depends on ATH79 + depends on ATH79 || COMPILE_TEST select PHYLINK imply NET_SELFTESTS help
While this driver is meant for MIPS only, it can be compiled on x86 just fine. Remove pointless parentheses while at it. Enables CI building of this driver. Signed-off-by: Rosen Penev <rosenp@gmail.com> --- drivers/net/ethernet/atheros/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)