From 48b6733c3301176e888742ae329a8849c4bfb542 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 29 Sep 2015 18:13:59 +0800 Subject: [PATCH] cores/gpio: fix import --- misoc/cores/gpio.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/misoc/cores/gpio.py b/misoc/cores/gpio.py index 681b68cfd..2e99c27f7 100644 --- a/misoc/cores/gpio.py +++ b/misoc/cores/gpio.py @@ -1,6 +1,7 @@ from migen import * from migen.genlib.cdc import MultiReg -from migen.bank.description import * + +from misoc.interconnect.csr import * class GPIOIn(Module, AutoCSR):