From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751985AbeEPSxV (ORCPT ); Wed, 16 May 2018 14:53:21 -0400 Received: from mail-qt0-f195.google.com ([209.85.216.195]:34095 "EHLO mail-qt0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750846AbeEPSxR (ORCPT ); Wed, 16 May 2018 14:53:17 -0400 X-Google-Smtp-Source: AB8JxZqEaH8Pmok1dMngdNHSya0Tm5dbinLqYZnrddLYPfpLbf2qqgmLFGBkKvXteJTB/UkzXNIUUQ== From: Florian Fainelli To: netdev@vger.kernel.org Cc: fugang.duan@nxp.com, Florian Fainelli , "David S. Miller" , Andrew Lunn , linux-kernel@vger.kernel.org (open list) Subject: [PATCH net-next v2 3/3] net: phy: Allow MDIO_MOXART and MDIO_SUN4I with COMPILE_TEST Date: Wed, 16 May 2018 11:52:58 -0700 Message-Id: <20180516185258.20508-4-f.fainelli@gmail.com> X-Mailer: git-send-email 2.14.1 In-Reply-To: <20180516185258.20508-1-f.fainelli@gmail.com> References: <20180516185258.20508-1-f.fainelli@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Those drivers build just fine with COMPILE_TEST, so make that possible. Signed-off-by: Florian Fainelli --- drivers/net/phy/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/phy/Kconfig b/drivers/net/phy/Kconfig index 0e2305ccc91f..343989f9f9d9 100644 --- a/drivers/net/phy/Kconfig +++ b/drivers/net/phy/Kconfig @@ -118,7 +118,7 @@ config MDIO_I2C config MDIO_MOXART tristate "MOXA ART MDIO interface support" - depends on ARCH_MOXART + depends on ARCH_MOXART || COMPILE_TEST help This driver supports the MDIO interface found in the network interface units of the MOXA ART SoC @@ -142,7 +142,7 @@ config MDIO_OCTEON config MDIO_SUN4I tristate "Allwinner sun4i MDIO interface support" - depends on ARCH_SUNXI + depends on ARCH_SUNXI || COMPILE_TEST help This driver supports the MDIO interface found in the network interface units of the Allwinner SoC that have an EMAC (A10, -- 2.14.1