Changes between Initial Version and Version 82 of Ticket #2998
- Timestamp:
- Apr 23, 2012, 9:51:02 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2998
- Property Cc added
- Property Component Drivers/Network → System/Kernel
- Property Blocking → 8016
- Property Version R1/pre-alpha1 → R1/Development
-
Ticket #2998 – Description
initial v82 1 1 bcm440x driver compiles without a problem and reckognizes the NIC by vendorID/productID, but does not initialize the network card. 2 2 3 I've put some debug messages and found that in b44um.c @ line 119: 3 4 {{{ 4 5 if (b44_LM_GetAdapterInfo(&be_b44_dev_cards[sCardsFound].lm_dev) != LM_STATUS_SUCCESS) 5 6 … … 10 11 if ((eprom[126] != 1) && (eprom[126] != 0x10)) 11 12 return LM_STATUS_FAILURE; 13 }}} 12 14 Always return LM_STATUS_FAILURE, I don't know which are the correct values or b44_LM_EepromReadBlock(pDevice, 0, eprom_dw, sizeof(eprom_dw)); doesn't reads the values correctly. 13 15