Skip to content
Snippets Groups Projects
Commit 16721715 authored by Yanjun Yang's avatar Yanjun Yang Committed by Wolfgang Denk
Browse files

NET: lan91c96: Correct chip detect logic


The lan91c96_detect_chip routine is not correct according
to the manual.

Signed-off-by: default avatarYanJun Yang <yangyj.ee@gmail.com>
parent ed6ce67a
No related branches found
No related tags found
No related merge requests found
......@@ -780,7 +780,7 @@ static int lan91c96_detect_chip(struct eth_device *dev)
u8 chip_id;
int r;
SMC_SELECT_BANK(dev, 3);
chip_id = SMC_inw(dev, 0xA) & LAN91C96_REV_REVID;
chip_id = (SMC_inw(dev, 0xA) & LAN91C96_REV_CHIPID) >> 4;
SMC_SELECT_BANK(dev, 0);
for (r = 0; r < sizeof(supported_chips) / sizeof(struct id_type); r++)
if (chip_id == supported_chips[r].id)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment