From patchwork Wed Aug 31 10:57:54 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michal Simek X-Patchwork-Id: 112535 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 58B02B6F77 for ; Wed, 31 Aug 2011 20:59:32 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id E95E428117; Wed, 31 Aug 2011 12:59:06 +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 9jAB+iYfB4nn; Wed, 31 Aug 2011 12:59:06 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 9EF6928118; Wed, 31 Aug 2011 12:58:38 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4E623280E7 for ; Wed, 31 Aug 2011 12:58:22 +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 W5AaqcsfTOTO for ; Wed, 31 Aug 2011 12:58:20 +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-bw0-f44.google.com (mail-bw0-f44.google.com [209.85.214.44]) by theia.denx.de (Postfix) with ESMTPS id 9A465280B8 for ; Wed, 31 Aug 2011 12:58:08 +0200 (CEST) Received: by mail-bw0-f44.google.com with SMTP id r4so611503bka.3 for ; Wed, 31 Aug 2011 03:58:08 -0700 (PDT) Received: by 10.204.0.75 with SMTP id 11mr156758bka.397.1314788288309; Wed, 31 Aug 2011 03:58:08 -0700 (PDT) Received: from localhost ([178.23.216.97]) by mx.google.com with ESMTPS id v1sm325007bkd.55.2011.08.31.03.58.07 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 31 Aug 2011 03:58:07 -0700 (PDT) From: Michal Simek To: u-boot@lists.denx.de Date: Wed, 31 Aug 2011 12:57:54 +0200 Message-Id: <1314788276-26107-7-git-send-email-monstr@monstr.eu> X-Mailer: git-send-email 1.5.5.1 In-Reply-To: <1314788276-26107-6-git-send-email-monstr@monstr.eu> References: <1314788276-26107-1-git-send-email-monstr@monstr.eu> <1314788276-26107-2-git-send-email-monstr@monstr.eu> <1314788276-26107-3-git-send-email-monstr@monstr.eu> <1314788276-26107-4-git-send-email-monstr@monstr.eu> <1314788276-26107-5-git-send-email-monstr@monstr.eu> <1314788276-26107-6-git-send-email-monstr@monstr.eu> Subject: [U-Boot] [PATCH 6/8] microblaze: Enable several ethernet driver compilation 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: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de NET_MULTI enables to use several ethernet drivers but microblaze-generic platform config file select only one driver. Signed-off-by: Michal Simek Acked-by: Stephan Linz --- include/configs/microblaze-generic.h | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/include/configs/microblaze-generic.h b/include/configs/microblaze-generic.h index c526006..4c76afd 100644 --- a/include/configs/microblaze-generic.h +++ b/include/configs/microblaze-generic.h @@ -63,11 +63,12 @@ /* ethernet */ #undef CONFIG_SYS_ENET -#ifdef XILINX_EMACLITE_BASEADDR -# define CONFIG_XILINX_EMACLITE 1 +#if defined(XILINX_EMACLITE_BASEADDR) +# define CONFIG_XILINX_EMACLITE 1 # define CONFIG_SYS_ENET -#elif XILINX_LLTEMAC_BASEADDR -# define CONFIG_XILINX_LL_TEMAC 1 +#endif +#if defined(XILINX_LLTEMAC_BASEADDR) +# define CONFIG_XILINX_LL_TEMAC 1 # define CONFIG_SYS_ENET #endif