From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.251]) by ozlabs.org (Postfix) with ESMTP id DFF41DDE41 for ; Wed, 11 Mar 2009 10:02:48 +1100 (EST) Received: by an-out-0708.google.com with SMTP id d14so1149092and.39 for ; Tue, 10 Mar 2009 16:02:47 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: Date: Tue, 10 Mar 2009 17:55:49 -0500 Message-ID: Subject: Re: TSEC/MDIO bug in recent kernels From: Johns Daniel To: linuxppc-dev@ozlabs.org Content-Type: text/plain; charset=ISO-8859-1 List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , (I did not get to complete the message!) For those of you who are running into this error: 24520:01 not found eth0: Could not attach to PHY IP-Config: Failed to open eth0 IP-Config: Device `eth0' not found. There is a bug in recent kernels. I found it in 2.6.28.7: linux/arch/powerpc/sysdev/fsl_soc.c: for_each_compatible_node(np, "mdio", "gianfar"); should be: linux/arch/powerpc/sysdev/fsl_soc.c: for_each_compatible_node(np, "mdio", "gianfar") Note that the semicolon should not be there! -- Johns