targets/kc705: avoid ddrphy/ethphy address conflict

This commit is contained in:
Sebastien Bourdeauducq 2014-11-20 17:11:57 -08:00
parent 603c2641bb
commit 7eaa5f7372
1 changed files with 2 additions and 2 deletions

View File

@ -107,8 +107,8 @@ class BaseSoC(SDRAMSoC):
class MiniSoC(BaseSoC):
csr_map = {
"ethphy": 10,
"ethmac": 11,
"ethphy": 11,
"ethmac": 12,
}
csr_map.update(BaseSoC.csr_map)