targets/kc705: fix csr address conflict on eth

This commit is contained in:
Florent Kermarrec 2015-02-16 14:14:03 +01:00 committed by Sebastien Bourdeauducq
parent 0a38b8c74a
commit 73ab271f9a
1 changed files with 2 additions and 2 deletions

View File

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