Disable uneeded assert.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 11 Jan 2012 14:40:16 +0000 (14:40 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 11 Jan 2012 14:40:16 +0000 (14:40 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@5239 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/arm/drv/eth_at91.c

index cac5da26456c4d21d07f964534f190385388c41c..72d2a250169483070e831de748a4fbf6c16752c6 100644 (file)
@@ -236,7 +236,7 @@ static void emac_reset(void)
 
        uint32_t phy_id = phy_hw_read(NIC_PHY_ID1) << 16
                | phy_hw_read(NIC_PHY_ID2);
-       ASSERT((phy_id & 0xFFFFFFF0) == (NIC_PHY_ID & 0xFFFFFFF0));
+       //ASSERT((phy_id & 0xFFFFFFF0) == (NIC_PHY_ID & 0xFFFFFFF0));
        LOG_INFO("PHY ID %#08lx\n", phy_id);
 
        ticks_t start = timer_clock();