From 73ab271f9a8c366c967a94a38cc9ddba921cc136 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Mon, 16 Feb 2015 14:14:03 +0100 Subject: [PATCH] targets/kc705: fix csr address conflict on eth --- targets/kc705.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/targets/kc705.py b/targets/kc705.py index f6aa143c..50b68804 100644 --- a/targets/kc705.py +++ b/targets/kc705.py @@ -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) -- 2.30.2