From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 40EE5C433EF for ; Wed, 27 Apr 2022 10:45:05 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id CDEED83ECD; Wed, 27 Apr 2022 12:43:45 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="pA+wy8rs"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 96FCE83EF1; Wed, 27 Apr 2022 12:42:56 +0200 (CEST) Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 4644183EAF for ; Wed, 27 Apr 2022 12:42:39 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=kabel@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id EA13CB82576; Wed, 27 Apr 2022 10:42:38 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 124F6C385AE; Wed, 27 Apr 2022 10:42:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1651056157; bh=1+OmBfNf1lf/SA1KC4Fj7lNEREtQIVv1MRe/4BqHSHs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=pA+wy8rs0qMwyA9AoLQF3UInZDA0x2kjEz+KYNZir53rcgVVtYvS3wXe2m+rOJgBB yh+T8G97Wh1/C+rSnkxpPw5JN/0BEmbDLfCb5tYtnggOZHIcm6DD6iq7A15L3QUk+v +Csn+Y0yIsZ6Aj+jfn1a2Y6PA6vyw+Wxo0xDjPhwvRSj94B1kH6V+tUpSQ8UhGCgUY kA2sGnugMsDdAoZ/uTOGLuNwDon4SuvQNQymqovo0T+PBAFOL53t78sJS0W8NHhdDT 3KCyRdh/XTNJlPkG8BGvFkIBiOrZ3WbJKe4jiCQVXF9APPYKGG+Yt6Px3CW/vAX/DK y0cMc5jt8VPOQ== From: =?UTF-8?q?Marek=20Beh=C3=BAn?= To: Stefan Roese Cc: Robert Marko , =?UTF-8?q?Pali=20Roh=C3=A1r?= , U-Boot-Denx , Ramon Fried , Joe Hershberger , =?UTF-8?q?Marek=20Beh=C3=BAn?= Subject: [PATCH u-boot-marvell 13/19] net: mvneta: Don't check for CONFIG_PHYLIB Date: Wed, 27 Apr 2022 12:41:56 +0200 Message-Id: <20220427104202.1205-14-kabel@kernel.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220427104202.1205-1-kabel@kernel.org> References: <20220427104202.1205-1-kabel@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean From: Marek BehĂșn Drop checking for CONFIG_PHYLIB in mvneta, this is already done in Kconfig. Signed-off-by: Marek BehĂșn --- drivers/net/mvneta.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/net/mvneta.c b/drivers/net/mvneta.c index 5c3f7125b5..0ec9d2957c 100644 --- a/drivers/net/mvneta.c +++ b/drivers/net/mvneta.c @@ -40,10 +40,6 @@ DECLARE_GLOBAL_DATA_PTR; -#if !defined(CONFIG_PHYLIB) -# error Marvell mvneta requires PHYLIB -#endif - #define CONFIG_NR_CPUS 1 #define ETH_HLEN 14 /* Total octets in header */ -- 2.35.1