mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-10 11:17:18 +01:00
Added Am79C970A chip id to pcnet
Signed-off-by: Vlad Lungu <vlad@comsys.ro>
This commit is contained in:
parent
17c9de6bb3
commit
899ef7b845
1 changed files with 3 additions and 0 deletions
|
|
@ -260,6 +260,9 @@ static int pcnet_probe(struct eth_device* dev, bd_t *bis, int dev_nr)
|
|||
return -1;
|
||||
chip_version = (chip_version >> 12) & 0xffff;
|
||||
switch (chip_version) {
|
||||
case 0x2621:
|
||||
chipname = "PCnet/PCI II 79C970A"; /* PCI */
|
||||
break;
|
||||
#ifdef CONFIG_PCNET_79C973
|
||||
case 0x2625:
|
||||
chipname = "PCnet/FAST III 79C973"; /* PCI */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue