mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-30 00:21:06 +00: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…
Reference in a new issue