From f1fab319eb3fe91c157b3a9564841aef62a03554 Mon Sep 17 00:00:00 2001 From: asterix Date: Wed, 11 Jan 2012 14:40:16 +0000 Subject: [PATCH] Disable uneeded assert. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@5239 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/cpu/arm/drv/eth_at91.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bertos/cpu/arm/drv/eth_at91.c b/bertos/cpu/arm/drv/eth_at91.c index cac5da26..72d2a250 100644 --- a/bertos/cpu/arm/drv/eth_at91.c +++ b/bertos/cpu/arm/drv/eth_at91.c @@ -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(); -- 2.25.1