net: ag71xx: add COMPILE_TEST to test compilation
authorRosen Penev <rosenp@gmail.com>
Thu, 5 Sep 2024 19:49:32 +0000 (12:49 -0700)
committerJakub Kicinski <kuba@kernel.org>
Tue, 10 Sep 2024 00:17:38 +0000 (17:17 -0700)
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>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20240905194938.8453-2-rosenp@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/atheros/Kconfig

index 482c58c4c5844ac9b982e3591c94f615db70a6ae..bec5cdf8d1da0733f7dae121a99d4a548407ec17 100644 (file)
@@ -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