From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24029 invoked by alias); 3 Apr 2009 14:24:54 -0000 Received: (qmail 24018 invoked by uid 22791); 3 Apr 2009 14:24:52 -0000 X-SWARE-Spam-Status: No, hits=0.0 required=5.0 tests=BAYES_50,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mailc.rambler.ru (HELO mailc.rambler.ru) (81.19.66.27) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 03 Apr 2009 14:24:46 +0000 Received: from [127.0.0.1] (unknown [212.45.6.2]) (Authenticated sender: marusov@rambler.ru) by mailc.rambler.ru (Postfix) with ESMTP id 00DC2621C6D for ; Fri, 3 Apr 2009 18:24:42 +0400 (MSD) Message-ID: <49D61C26.4080204@rambler.ru> Date: Fri, 03 Apr 2009 14:24:00 -0000 From: =?UTF-8?B?0J3QuNC60L7Qu9Cw0Lkg0JzQsNGA0YPRgdC+0LI=?= User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: ecos-maintainers@ecos.sourceware.org Subject: Bug: KSZ8001.c Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Mailing-List: contact ecos-maintainers-help@ecos.sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: ecos-maintainers-owner@ecos.sourceware.org X-SW-Source: 2009-04/txt/msg00001.txt.bz2 Hello! I think there is a bug in "Ethernet transceiver (PHY) support for Micrel KSZ8001" module. File KSZ8001.c Line 160: _eth_phy_dev("Micrel KSZ8001", 0x00221613, ksz8001_stat) This causes an error at Embedded Artists 2469 platform "Unsupported PHY device - id: ffffffff" Documentation from Micrel for KSZ8001L/S says that device ID must be 0x0022161A. Cure is Line 160: _eth_phy_dev("Micrel KSZ8001", 0x0022161A, ksz8001_stat) So, it works! Thank you for great job! Nikolay.