From patchwork Mon Jul 18 19:41:07 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Andreas_Bie=C3=9Fmann?= X-Patchwork-Id: 105352 X-Patchwork-Delegate: info@emk-elektronik.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id CA634B6F62 for ; Tue, 19 Jul 2011 05:42:45 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5DB3428370; Mon, 18 Jul 2011 21:42:17 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id NQaPVTJjllLC; Mon, 18 Jul 2011 21:42:17 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B233D28335; Mon, 18 Jul 2011 21:41:44 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5141D2829C for ; Mon, 18 Jul 2011 21:41:38 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1bTlF-jz3SiQ for ; Mon, 18 Jul 2011 21:41:37 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-fx0-f50.google.com (mail-fx0-f50.google.com [209.85.161.50]) by theia.denx.de (Postfix) with ESMTPS id 4E599282EA for ; Mon, 18 Jul 2011 21:41:28 +0200 (CEST) Received: by mail-fx0-f50.google.com with SMTP id 2so4576145fxh.23 for ; Mon, 18 Jul 2011 12:41:28 -0700 (PDT) Received: by 10.223.30.87 with SMTP id t23mr6641308fac.51.1311018088717; Mon, 18 Jul 2011 12:41:28 -0700 (PDT) Received: from andreas-mbp.erlangen.biessmann.tld (dslb-178-010-080-114.pools.arcor-ip.net [178.10.80.114]) by mx.google.com with ESMTPS id r12sm3147786fam.24.2011.07.18.12.41.27 (version=SSLv3 cipher=OTHER); Mon, 18 Jul 2011 12:41:28 -0700 (PDT) From: =?UTF-8?q?Andreas=20Bie=C3=9Fmann?= To: u-boot@lists.denx.de Date: Mon, 18 Jul 2011 21:41:07 +0200 Message-Id: <1311018069-60651-6-git-send-email-andreas.devel@googlemail.com> X-Mailer: git-send-email 1.7.6 In-Reply-To: <1311018069-60651-1-git-send-email-andreas.devel@googlemail.com> References: <1311018069-60651-1-git-send-email-andreas.devel@googlemail.com> MIME-Version: 1.0 Subject: [U-Boot] [PATCH 5/6] net/eth.c: drop obsolete at91rm9200 support X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de All available at91rm9200 boards have migrated to ar920t/at91 and therefore to CONFIG_NET_MULTI. The obsolete at91rm9200_miiphy_initialize() was removed in "ARM: remove obsolete at91rm9200". Signed-off-by: Andreas Bießmann --- net/eth.c | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/net/eth.c b/net/eth.c index 6523834..3aad71f 100644 --- a/net/eth.c +++ b/net/eth.c @@ -521,7 +521,6 @@ char *eth_get_name (void) #warning Ethernet driver is deprecated. Please update to use CONFIG_NET_MULTI -extern int at91rm9200_miiphy_initialize(bd_t *bis); extern int mcf52x2_miiphy_initialize(bd_t *bis); extern int ns7520_miiphy_initialize(bd_t *bis); @@ -532,9 +531,6 @@ int eth_initialize(bd_t *bis) miiphy_init(); #endif -#if defined(CONFIG_AT91RM9200) - at91rm9200_miiphy_initialize(bis); -#endif #if defined(CONFIG_MCF52x2) mcf52x2_miiphy_initialize(bis); #endif