From: Luke Kenneth Casson Leighton Date: Tue, 24 Jul 2018 09:39:35 +0000 (+0100) Subject: fix peripheral side slow peripherals name X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=53295130af0d7ebf81241ce383232bc5bec7ad71;p=pinmux.git fix peripheral side slow peripherals name --- diff --git a/src/bsv/peripheral_gen/eint.py b/src/bsv/peripheral_gen/eint.py index f5a6e86..825f3eb 100644 --- a/src/bsv/peripheral_gen/eint.py +++ b/src/bsv/peripheral_gen/eint.py @@ -35,7 +35,7 @@ class eint(PBase): for idx, p in enumerate(self.peripheral.pinspecs): pname = p['name'] sname = self.peripheral.pname(pname).format(count) - ps = "pinmux.peripheral_side.%s" % sname + ps = "pinmux.peripheral_side.eint.%s" % sname comma = '' if idx == size - 1 else ',' ret.append(" {0}{1}".format(ps, comma)) ret.append(" });")